-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (43 loc) · 780 Bytes
/
style.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
*{
margin: 0;
padding: 0;
border: 0;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-style: italic ;
color: rgb(255, 255, 255);
}
body
{
background-image: linear-gradient(to right, rgb(97, 59, 235), rgb(187, 206, 234));
}
.container{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: 6rem;
}
.title{
font-size: 25px;
}
.city{
display: flex;
justify-content: space-around;
align-items: center;
margin: 3rem;
}
.temp{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.degree-section:hover{
cursor: pointer;
}
.degree{
padding: 0 0.5rem;
}
img{
width: 10rem;
}