-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
110 lines (106 loc) · 2.25 KB
/
main.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
107
108
109
110
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: black;
}
p, i, span {
font-size: 5rem;
font-family: 'Open Sans', sans-serif;
font-weight: 300;
color:white;
}
/* Flex helpers */
.flex {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-align-content: stretch;
-ms-flex-line-pack: stretch;
align-content: stretch;
}
.flex.justified-c {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.flex.justified-start {
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.flex.justified-end {
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.flex.justified-c {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.flex.centered {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.flex.start {
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
}
.flex.column {
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.flex.align-stretch {
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
}
.flex.wrap {
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.flex-child.stretch {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
-webkit-align-self: stretch;
-ms-flex-item-align: stretch;
align-self: stretch;
}
.flex-child.end {
-webkit-align-self: flex-end;
-ms-flex-item-align: end;
align-self: flex-end;
}
.flex-child.start {
-webkit-align-self: flex-start;
-ms-flex-item-align: start;
align-self: flex-start;
}
.flex-child.center {
-webkit-align-self: center;
-ms-flex-item-align: center;
align-self: center;
}
.flex-child.justified-c {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
#clock {
min-width: 300px;
}