forked from Vivek-68/weatherwatch
-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
55 lines (46 loc) · 999 Bytes
/
styles.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
*{
margin: 0;
padding: 0;
}
body{
background: linear-gradient(90deg, #efd5ff 0%, #515ada 100%);
}
h1{color: white; font-size: 4rem; font-family: 'Montserrat', sans-serif;}
.searchbox
{
height: 60vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#inputbox
{
height: 4rem;
width: 32rem;
border-radius: 35px;
border: none;
padding: 15px;
outline: none;
margin-bottom: 20px;
font-size: 1.5rem;
font-family: 'Montserrat',sans-serif;
}
p,h2{
font-size: 2.3rem;
font-family: 'Montserrat', sans-serif;
color: black;
font-weight: bold;
text-align: center;
word-spacing: 2rem;
}
.section{height: 80vh;}
@media (max-width: 1440px)
{
h1{text-align: center; font-size: 2.5rem;}
#inputbox{
width: 85vw;
font-size: 1rem;
}
p,h2{font-size: 1.5rem; word-spacing: 0.5rem;}
}