-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (41 loc) · 754 Bytes
/
style.css
File metadata and controls
48 lines (41 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
* {
box-sizing: border-box;
-moz-box-sizing: border-box;
}
html, body {
padding:0;
margin:0;
background-color: #000;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
html, body, #container, .panel {
width:100%;
height:100%;
}
#container, .panel {
position:absolute;
-webkit-backface-visibility: hidden;
}
.panel {
border: 10px solid black;
border-radius: 20px;
border-top-left-radius: 200px;
background-color: #fff;
}
span {
display:block;
text-align:center;
width:370px;
height:370px;
line-height: 300px;
font-size:240px;
padding:40px;
margin:10px;
border-radius: 210px;
color:#fff;
}