-
Notifications
You must be signed in to change notification settings - Fork 8
/
styles.css
106 lines (92 loc) · 1.69 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
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
@font-face {
font-family: SourceSansProRegular;
src: url(fonts/SourceSansPro-Regular.ttf);
}
@font-face {
font-family: SourceSansProBold;
src: url(fonts/SourceSansPro-Bold.ttf);
}
html {
font-family: SourceSansProRegular, Helvetica, sans-serif;
color: #666;
}
body {
margin: 0;
padding: 0;
}
.label {
text-transform: uppercase;
font-size: 11px;
margin-bottom: 8px;
color: #9d9d9d;
font-family: SourceSansProBold;
}
.nav {
background-color: #f1f1f1;
}
.header {
color: #9d9d9d;
font-size: 20px;
font-weight: 500;
padding-top: 15px;
padding-bottom: 15px;
padding-left: 60px;
}
.content {
padding-left: 60px;
padding-top: 2px;
}
input[type=text],
textarea {
font-family: SourceSansProRegular;
width: 60%;
display: block;
height: auto;
line-height: normal;
font-size: 1em;
border-radius: 8px;
border: 3px solid transparent;
margin: -4px;
color: #666;
padding: 8px 10px 9px;
box-shadow: inset 0 0 1px 1px #d0d0d0;
transition: border-color .2s ease-in;
}
input[type=text]:focus,
textarea:focus {
border-color: rgba(62,170,175,.2);
outline: 0;
color: #666;
}
input[type=submit] {
display: inline-block;
padding: .7em .8rem;
cursor: pointer;
white-space: nowrap;
border-radius: 2px;
vertical-align: middle;
line-height: 1;
text-decoration: none;
font-size: 14px;
border: none;
color: #fff;
background-color: #2eb459;
margin-top: 10px;
}
input[type=submit]:hover {
background-color: #39aa56;
}
@media screen and (max-width: 768px) {
.content {
padding-left: 20px;
padding-right: 20px;
padding-top: 15px;
}
.header {
padding-left: 20px;
}
input[type=text],
textarea {
width: 100%;
}
}