forked from ubilabs/react-geosuggest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
97 lines (86 loc) · 1.5 KB
/
Copy pathapp.css
File metadata and controls
97 lines (86 loc) · 1.5 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
/**
* Resets
*/
*, :before, :after {
margin: 0;
padding: 0;
position: relative;
box-sizing: border-box;
}
input, select, button, textarea {
-webkit-appearance: none;
-moz-appearance: none;
-moz-appearance: none;
font: inherit;
color: inherit;
}
/**
* Base
*/
html {
font: 112.5%/1.2 "Roboto", Arial, sans-serif;
color: #3d464d;
background-color: #fff;
font-weight: 300;
-webkit-font-smoothing: antialiased;
width: 100%;
height: 100%;
overflow: hidden-x;
text-align: center;
}
body {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
width: 100%;
height: 100%;
}
.container {
-webkit-box-flex: 0;
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
max-width: 612px;
max-width: 34rem;
}
a {
color: #3d464d;
-webkit-transition: color 0.2s;
transition: color 0.2s;
}
a:hover, a:focus {
color: #267dc0;
}
h1 {
font-size: 72px;
font-size: 4rem;
font-weight: 100;
margin-bottom: .5em;
color: #267dc0;
}
.subheader {
font-weight: 300;
margin-bottom: 1.5em;
}
.hint {
color: #ccc;
margin: 2em 0;
}
.footer {
font-weight: 300;
padding-top: 2em;
margin-top: 2em;
border-top: 1px solid #ccc;
}
.ubilabs {
vertical-align: middle;
}