-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
72 lines (68 loc) · 1.47 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
body {
background: linear-gradient(to right,#ac4ef8, #3b8bf5);
}
.main-container{
display:flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.ml3 {
font-weight: 900;
font-size: 3.5em;
text-align: center;
font-family: 'Open Sans';
}
#weather {
display:none;
/* margin-left: 23%; */
flex-direction: column;
height: 400px;
width: 370px;
background-color:white;
border-radius:25px;
align-items: center;;
}
.temperature {
font-size: 3.0em;
text-align: center;
font-family: 'Open Sans';
}
.location {
font-size: 50px;
font-family: 'Open Sans'
}
.location-icon {
font-size: 50px;
margin-top: 10px;
}
.data {
text-align: center;
}
.weather-icon {
width: 100%;
text-align: center;
background-color: rgb(174, 184, 243);
border-radius: 25px 25px 0px 0px;
}
.modal-background {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}