-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
118 lines (110 loc) · 1.82 KB
/
index.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
111
112
113
114
115
116
117
118
@font-face {
font-family: "SF-Pro-Text";
src: url("Fonts/SF-Pro-Text-Regular.otf");
font-weight: normal;
}
*, *:before, *:after {
box-sizing: border-box;
}
html {
font-size: 62.5%;
font-family: "SF-Pro-Text";
}
html, body {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
font-family: "SF-Pro-Text";
}
.page-wrapper {
min-width: 100%;
min-height: 100%;
position: relative;
background-color: #222;
font-size: 3.6rem;
}
h1, h2, h3,
h4, h5, h6,
p, span {
font-family: helvetica, sans-serif;
color: #fff;
font-family: "SF-Pro-Text";
}
/* Positions */
.clock-module {
position: absolute;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
left: 0;
top: 0;
margin: 100px;
color: #fff;
}
.center-bottom {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
bottom: 0;
left: 0;
margin: 100px;
right: 0;
}
#top-right {
position: absolute;
display: flex;
width: auto;
height: auto;
justify-content: center;
align-items: center;
margin: 50px 100px;
top: 0;
right: 0;
}
/* Modules */
/* clock Module */
.time#time {
font-size: 100px;
font-weight: bold;
margin-bottom: 20px;
}
.date#date {}
/* Weather Module */
#weather-module {
/* margin: 50px; */
color: #fff;
}
#weather-module #icon {
text-align: center;
}
#weather-module #icon img {
height: 150px;
width: 150px;
}
#weather-module-content {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
flex-wrap: wrap;
}
#weather-module .city {
width: 100%;
text-align: center;
margin-bottom: 20px;
}
#weather-module .temp,
#weather-module .weather {
text-align: center;
width: 50%;
}
/* Happy Statement */
.looking-fine-module {
/* font-size: 35px; */
color: #fff;
margin: 50px;
}