-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (68 loc) · 1.26 KB
/
style.css
File metadata and controls
72 lines (68 loc) · 1.26 KB
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
72
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
background-color: #222;
background-image: url("https://source.unsplash.com/1600x900/?weather");
background-size: cover;
font-size: 120%;
}
.card {
background: #000000d0;
color: aliceblue;
padding: 2rem;
max-width: 420px;
width: 100%;
border-radius: 30px;
margin: 1em;
}
.search {
display: flex;
align-items: center;
justify-content: center;
}
button {
margin: 0.5rem;
border-radius: 50%;
border: none;
outline: none;
height: 44px;
width: 44px;
color: #fff;
background: #7c7c7c2b;
cursor: pointer;
transition: 0.2s ease-in-out;
}
button:hover {
background: #7c7c7c6b;
}
input.search-bar {
border: none;
border-radius: 24px;
outline: none;
padding: 0.5em 1em;
background: #7c7c7c2b;
color: #fff;
font-size: 105%;
font-family: sans-serif;
width: calc(100% - 20px);
}
/* .search-bar {
margin: 0rem;
border-radius: 24px;
border: none;
background: #7c7c7c2b;
outline: none;
} */
h1.temp {
margin: 0;
}