-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathstyles.css
80 lines (76 loc) · 1.29 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
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
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
:root { font-size: 15px; }
:focus { outline: none; }
@media only print {
body * { display: none !important; }
body:after { content: "Don't waste paper!"; }
}
body {
font-family: 'Open Sans', sans-serif;
font-size: 1rem;
line-height: 162%;
color: #343838;
margin: 0;
background: #efefef;
}
main {
background: #fff;
}
.wrap {
width: 90%;
max-width: 60rem;
margin: 0 auto;
overflow: hidden;
position: relative;
}
.wrap--footer {
padding: 1rem 0;
}
.elemnts--inline p {
display: inline-block;
margin-right: 1rem;
}
.wrap--header {
border-bottom: 1px solid #efefef;
}
.fixed--right {
position: absolute;
top: 1.2rem;
right: 0;
}
.header {
color: #005F6B;
font-weight: 400;
}
select {
border: 1px solid #efefef;
background: #fff;
padding: .4rem;
font-family: inherit;
font-size: inherit;
color: #222;
}
textarea {
display: block;
width: 100%;
font-family: 'Source Code Pro', monospace;
font-size: inherit;
color: #222;
background: #f5f5f5;
border: none;
padding: 1rem;
resize: vertical;
}
button {
display: inline-block;
font-weight: 600;
color: #fff;
background: #00B4CC;
border: none;
border-bottom: 4px solid #008C9E;
padding: 1rem 1.6rem;
font-size: 110%;
cursor: pointer;
border-radius: 3px;
}