-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (54 loc) · 805 Bytes
/
style.css
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
* {
box-sizing: border-box;
}
html {
height: 100%;
}
body {
background: #444;
height: 100%;
margin: 0;
font-family: Arial, Verdana, sans-serif;
}
#main {
background: #eee;
border-radius: 5px;
bottom: 0;
height: 70%;
left: 0;
margin: auto;
padding: 4% 13%;
position: absolute;
right: 0;
top: 0;
width: 70%;
}
#wrapper {
position: relative;
height: 100%
}
#X {
width: 250px;
height: 250px;
margin: auto;
box-shadow: 0 1px 3px;
border-radius: 50%;
background: url('x.png') center center no-repeat #eee;
}
#content {
position: absolute;
bottom: 0;
width: 100%;
font-weight: bold;
}
#bar {
border-radius: 5px;
height: 10px;
overflow: hidden;
box-shadow: 0 0 3px #ccc inset;
}
#load {
background: #07f;
height: 100%;
width: 0%;
}