-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (48 loc) · 917 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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: grey;
background-image: url("https://source.unsplash.com/random/1920x1080/?wallpaper,landscape'");
}
.card {
background-color: white;
padding: 2em;
border-radius: 10px;
width: 100%;
max-width: 420px;
}
.search {
display: flex;
height: 35px;
padding: 1px;
justify-content: center;
}
button {
padding: 5px;
/* border: 2px; */
width: 40px;
height: 40px;
cursor: pointer;
margin: 0px 5px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 20px;
border: yellowgreen;
background-color: white;
transition: 0.2s ease-in-out;
/* opacity: 0.6; */
}
button:hover {
background-color: aquamarine;
}
input.cityinput {
border-radius: 17.5px;
/* border: 0px; */
padding: 0px 15px;
height: 40px;
border-color: black;
}