-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMeasurer.css
115 lines (100 loc) · 1.67 KB
/
Measurer.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* General layout */
html, body {
font: 16px Arial;
text-align: center;
margin: 0;
padding: 0;
text-align: center;
width: 100%
}
html {
height: 100%;
overflow: hidden
}
body {
background: #f0f9ff;
}
h1 {
margin: 30px 0 0;
padding: 0;
width: 100%;
text-align: center;
color: #777;
}
p {
margin: 20px 0 0;
padding: 0;
width: 100%;
text-align: center;
color: #777;
}
div {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
ul {
width: 600px;
margin: 25px auto;
text-align: left;
color: #555
}
li {
margin: 10px 0;
}
li strong {
display: inline-block;
padding: 5px;
background-color: green;
color: #fff;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
line-height: 12px;
text-align: center;
}
.btn {
background-color: orange;
color: #fff;
padding: 10px;
text-decoration: none;
font-weight: bold;
border-radius: 5px
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 120px;
bottom: 0;
background-color: rgba(120, 120, 120, 0.7);
text-align: left;
padding-top: 3px
}
.footer p {
padding: 0 0 0 20px;
margin: 5px 0 0;
line-height: 24px;
display: block;
width: auto;
text-shadow: 1px 1px 0px #333;
}
.footer p,
.footer a {
text-align: left;
color: #fff
}
.footer p span {
display: inline-block;
width: 100px
}
.footer a {
display: inline-block;
background-color: #2B54BF;
color: #fff;
font-weight: bold;
border-radius: 5px;
padding: 0 5px;
text-shadow: 1px 1px 0px #000;
text-decoration: none
}