-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (101 loc) · 2.13 KB
/
style.css
File metadata and controls
109 lines (101 loc) · 2.13 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
98
99
100
101
102
103
104
105
106
107
108
:root {
font-size: calc(1vw + 0.75vh + .10vmin);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body{
background-color:black;
color: white;
}
.container{
max-width: 50%;
padding-top: 100px;
padding-left:35%;
padding-right: 35%;
overflow: hidden;
}
canvas {
padding-left: 0;
padding-right: 0;
margin-left: auto;
margin-right: auto;
display: block;
width: 100%;
padding: 0;
}
#circle{
position: relative;
display: inline-block;
width: 100%;
height: 0;
padding: 50% 0;
border-radius: 50%;
box-shadow: inset 0 -2px 4px rgba(0,0,0,0.5), inset 0 -2px 2px rgba(255,255,255,1);
background-color:#83CCDD;
color:white;
border: solid 5px whitesmoke;
}
/* .weekly-container{
display: flex;
align-content: center;
justify-content: center;
} */
/* .weekly{
display: flex;
align-content: center;
justify-content: center;
text-align: center;
height: 0;
padding: 50% 0;
box-shadow: inset 0 -2px 4px rgba(0,0,0,0.5), inset 0 -2px 2px rgba(255,255,255,1);
background-color:#83CCDD;
color:white;
border: solid 5px whitesmoke;
}
#circle:hover{
background-color:#90E0F3;
cursor: pointer;
} */
/* Trying to work through some accesibility with :focus */
#circle:focus {
border-color:#E1C340;
outline:none;
}
#circle:hover{
cursor: pointer;
background-color:rgba(157, 194, 233, 0.817);
}
.city{
margin-top: -30%;
display: flex;
align-content: center;
justify-content: center;
padding-left:5px;
padding-right: 5px;
text-align: center;
font-family: 'Roboto', sans-serif;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
}
#temperatureF{
margin-top:-10px;
align-content: center;
justify-content: flex-start;
text-align: center;
font-family: 'Roboto', sans-serif;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
}
#temperatureC{
margin-top:-10px;
align-content: center;
justify-content: flex-start;
text-align: center;
font-family: 'Roboto', sans-serif;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
}
#description{
display: flex;
align-content: center;
justify-content: center;
text-align: center;
font-family: 'Open Sans', sans-serif;
}