-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathstyles.css
57 lines (49 loc) · 801 Bytes
/
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
@import url(https://fonts.googleapis.com/css?family=Roboto:300);
.pickers {
display: flex;
flex: 1;
width: 100%;
}
.intro {
position: absolute;
width: 100%;
padding: 3em 0;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
color: #fff;
text-shadow: #000 4px 4px 15px;
}
.left,
.right {
display: flex;
align-items: center;
justify-content: center;
flex-basis: 50%;
height: 100%;
}
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
font-family: 'Roboto', sans-serif;
}
.container {
position: relative;
}
.app {
height: 100%;
}
.app-container {
display: flex;
flex-direction: column;
height: 100%;
}
.gh-button {
position: absolute;
bottom: 100px;
display: flex;
justify-content: center;
width: 100%;
}