-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeatherApp.css
63 lines (61 loc) · 1.22 KB
/
WeatherApp.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
body{
font-family: Arial, Helvetica, sans-serif;
background-color: hsla(0, 0%, 0%, 0.114);
display:flex;
flex-direction: column;
align-items: center;
}
.cityInput{
font-size:1.5rem;
width:300px;
border-radius: 5px;
font-weight: bold;
padding:8px;
border:none;
}
button[type="submit"]{
font-size: 1.5rem;
padding:10px;
border-radius:5px;
background-color: hsl(119, 54%, 43%);
color: white;
border:none;
}
.card{
background: linear-gradient(180deg,hsla(210, 100%, 75%, 0.788),hsl(40, 100%, 75%));
padding:50px;
margin-top:30px;
box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.526);
display:flex;
flex-direction:column;
align-items:center;
min-width: 300px;
}
h1{
font-size: 1.5rem;
margin: 5px 0px;
}
.cityDisplay, .tempDisplay{
font-size: 3.5rem;
font-weight: bold;
color:hsla(0, 0%, 0%, 0.712);
margin-bottom : 25px;
}
.humidityDisplay{
font-weight: bold;
margin-bottom: 25px;
}
.descDisplay{
font-family: italic;
font-weight: bold;
font-size: 2rem;
}
.weatherEmoji{
margin:0;
font-size: 7.5rem;
}
.errorDisplay{
font-size: 2.5rem;
font-weight: bold;
color: hsla(0, 0%, 0%, 0.712);
}