-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (57 loc) · 1.01 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
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: "Open Sans", sans-serif;
height: 100vh;
margin: 0;
background-image: url("images/background.jpg");
background-size: cover;
}
.title {
color: black;
}
.card {
background-color: rgba(241, 241, 241, 0.7);
padding: 2em;
border-radius: 10%;
width: 100%;
max-width: 300px;
}
.search {
display: flex;
justify-content: center;
align-items: center;
}
.search__bar {
border: none;
outline: none;
border-radius: 0.8em;
padding: 0.5em;
background-color: rgba(255, 255, 255, 0.5);
}
.search__button {
width: 2em;
height: 2em;
border: none;
outline: none;
margin-left: 0.5em;
border-radius: 50%;
background-color: black;
cursor: pointer;
}
.search__icon {
width: 1em;
height: 1em;
}
.temp {
margin: 0;
}
.info {
display: flex;
align-items: center;
}
.description {
text-transform: capitalize;
}