-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
53 lines (40 loc) · 1.16 KB
/
styles.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
BODY {
/* IE10 Consumer Preview */
background-image: -ms-radial-gradient(center top, ellipse farthest-side, #FFFFFF 0%, #1AB6EF 100%);
/* Mozilla Firefox */
background-image: -moz-radial-gradient(center top, ellipse farthest-side, #FFFFFF 0%, #1AB6EF 100%);
/* Opera */
background-image: -o-radial-gradient(center top, ellipse farthest-side, #FFFFFF 0%, #1AB6EF 100%);
/* Webkit (Safari/Chrome 10) */
background-image: -webkit-gradient(radial, center top, 0, center top, 425, color-stop(0, #FFFFFF), color-stop(1, #1AB6EF));
/* Webkit (Chrome 11+) */
background-image: -webkit-radial-gradient(center top, ellipse farthest-side, #FFFFFF 0%, #1AB6EF 100%);
/* W3C Markup, IE10 Release Preview */
background-image: radial-gradient(ellipse farthest-side at center top, #FFFFFF 0%, #1AB6EF 100%);
}
H1 {
text-align: center;
}
#examples {
padding-left: 10px;
}
.endingRemark {
margin-top: 30px;
}
DIV.example {
margin-top: 50px;
}
DIV.example ul {
width: 500px;
}
A {
color: green;
}
A.decorate {
text-decoration: underline;
}
#disqus_thread {
margin: 10px;
padding: 20px;
background: #fff;
}