-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathui.css
More file actions
132 lines (110 loc) · 2.01 KB
/
ui.css
File metadata and controls
132 lines (110 loc) · 2.01 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
body {
font-family: sans-serif;
color: #777;
}
h1,h2,h3,h4,h5,h6 {
font-family: sans-serif;
font-weight: 300;
}
h3 {
font-weight: bold;
}
h4 {
text-transform: uppercase;
}
a {
text-decoration: none;
}
.header {
min-height: 80px;
margin: 0;
padding: 50px 20px 30px;
text-align: center;
border-bottom:1px solid #eee;
}
.header h1 {
margin: 0.2em 0;
font-size:3em;
}
.header h2 {
font-weight:300;
margin:0;
}
.content {
margin: 0 auto;
width: 70%;
margin-bottom:50px;
}
.content p {
line-height: 1.6em;
font-size: 115%;
}
.content h1 {
text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.content h2 {
color:rgb(75, 75, 75);
margin:50px 0 20px 0;
font-weight:bold;
}
.content .primary-button {
color: rgb(34, 121, 48);
background: rgb(150, 224, 136);
font-size: 130%;
display: block;
width: 50%;
margin: 0 auto;
}
/* NAVIGATION HEADER */
#headerMenu {
background: #111;
color: #fff;
border-bottom: none;
}
#headerMenu a:hover {
background: #222;
border-color: #222;
}
#headerMenu a {
color: #fff;
text-shadow: none;
}
#headerMenu .yui3-menu-active {
background: #222;
}
.content code {
font-size: 75%;
padding: 0.4em 0.6em;
}
.content pre code {
font-size: inherit;
}
.gist {
margin-top:25px;
}
.gist::before {
content: "Code:";
margin-bottom: 10px;
display: block;
font-family: sans-serif;
font-weight: 300;
}
@media (max-width: 767px) {
#headerMenu {
position: relative;
}
#headerMenu .yui3-menu-heading {
text-align: center;
display: block;
}
#headerMenu ul {
display: block;
text-align: center;
}
#headerMenu a {
font-size:80%;
}
.content {
width: 95%;
}
}