-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.less
More file actions
79 lines (65 loc) · 1.8 KB
/
styles.less
File metadata and controls
79 lines (65 loc) · 1.8 KB
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
.hidden {
display: none;
}
header {
text-align: center;
font-size: 200%;
font-weight: bold;
margin-bottom: 1em;
color: #888;
}
@nice-red: #B02B2C;
.menulink {
text-decoration: none;
padding: 0.3em 0.5em 0.3em 0.5em;
color: @nice-red;
text-shadow: #ddd 0 -1px 0;
}
nav {
font-family: Verdana, Arial, sans-serif;
text-align: right;
font-size: 120%;
margin: 0 1em 1em 1em;
color: #000;
a.adaptiveMenuTrigger {
.menulink;
border: solid 1px #ddd;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#f3f3f3), color-stop(51%,#ededed), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* IE10+ */
background: linear-gradient(to bottom, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
ul {
li {
display: inline;
a {
.menulink;
&:hover {
text-shadow: #aaa 0px 0px 5px;
}
}
}
}
}
article {
font-size: 110%;
color: #333;
a {
color: @nice-red;
}
}
footer {
text-align: center;
margin: 1em 1em 1em 1em;
a {
text-decoration: none;
color: @nice-red;
}
}