-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
144 lines (136 loc) · 2.09 KB
/
main.css
File metadata and controls
144 lines (136 loc) · 2.09 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
133
134
135
136
137
138
139
140
141
142
143
144
html, body {
padding: 0;
margin: 0;
font-family: 'Raleway', arial, helvetica, sans-serif;
font-weight: 300;
color: #fff;
background: #413f3e;
}
html {
font-size: 10px;
}
body {
font-size: 1.6rem;
line-height: 2.4rem;
}
.clr {
clear: both;
}
a {
color: #c5a80d;
text-decoration: none;
}
a:hover, a:active, a:focus {
text-decoration: underline;
}
h1, h2, h3 {
margin-top: 0;
font-weight: 300;
}
h1, h2 {
text-align: center;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 3.0rem;
}
h3 {
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em
}
header, h1, .wrapper {
width: 90%;
min-width: 300px;
max-width: 760px;
margin: 0 auto;
}
.wrapper {
box-sizing: border-box;
position: relative;
padding-left: 130px;
min-height: 100px;
}
footer .wrapper {
padding-left: 0;
}
header {
width: 100%;
margin: 200px auto 160px;
text-align: center;
font-size: 3.3rem;
}
#title {
width: 100%;
min-width: 280px;
max-width: 600px;
height: 100px;
}
#title path {
fill: none;
stroke: #f7e9ba;
stroke-width: 3px;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10;
}
header p {
line-height: 4rem;
}
header aside {
font-size: 1.4rem;
color: #f7e9ba;
}
article {
position: relative;
width: 100%;
margin-bottom: 33px;
padding: 1em 0;
background: #524e4c;
}
.code {
display: inline-block;
padding: 0 5px;
font-family: 'Roboto Mono', monospace;
font-size: 1.4rem;
color: #f7e9ba;
background: #413f3e;
}
pre.code {
display: block;
padding: 16px 20px;
line-height: 2rem;
}
.example {
display: inline-block;
position: absolute;
left: 0;
top: 0;
margin: 0 0 1em 0;
width: 106px;
}
.example svg {
border: 3px dotted #7c7673;
}
.example svg path {
fill: none;
stroke: #fff;
stroke-width: 3px;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10;
}
.example svg .spp path, .example svg path.spp {
stroke: #f7e9ba;
}
.example button {
width: 106px;
padding: 4px 0;
margin-bottom: 16px;
font-family: 'Raleway';
color: #fff;
background: #7c7673;
border: 0 none;
}