-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (80 loc) · 1.24 KB
/
style.css
File metadata and controls
96 lines (80 loc) · 1.24 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
html, body {
font-family: 'Roboto', sans-serif;
font-weight: 200;
height: 100%;
}
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
a {
text-decoration: none;
color: #3D92C9;
}
a:hover,
a:focus {
text-decoration: underline;
}
h1 {
margin-bottom: 20px;
}
input {
font-size: 1.3em;
font-family: 'Roboto', sans-serif;
width: 90%;
padding: 5px;
margin-bottom: 20px;
}
textarea {
font-size: 1.1em;
font-family: 'Roboto', sans-serif;
width: 90%;
height: 300px;
margin-bottom: 20px;
}
button {
width: 90%;
background-color: #fff;
color: #777;
letter-spacing: 0.05em;
text-transform: uppercase;
font-size: 60%;
padding: 1em 1.5em;
text-decoration: none;
border: 1px solid #777;
border-radius: 2px;
cursor: pointer;
}
.float-right {
float: right;
}
.float-left {
float: left;
}
.center-text {
text-align: center;
}
.center {
position: relative;
top: 50%;
transform: translateY(-50%);
}
.hidden {
display: none!important;
}
.content {
/*height: 100%;*/
}
footer {
margin-top: 20px;
padding-bottom: 10px;
}
/* RESPONSIVE */
@media (min-width: 48em) {
}
@media (max-width: 48em) {
body {
zoom: 80%;
}
}