-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
68 lines (58 loc) · 1.22 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
67
68
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #655f5f;
font-family: 'Open Sans', sans-serif;
background-image: url('https://source.unsplash.com/1600x900/?nature');
background-repeat: no-repeat;
background-size: cover;
font-size: 120%;
}
.card {
background-color: #000000d0;
color:white;
border-radius: 30px;
padding: 2em;
margin: 1em;
width: 100%;
max-width: 420px;
border-width: 30px;
}
.search{
display: flex;
justify-content: center;
align-items: center;
}
button {
margin: 0.5em;
border-radius: 50%;
height: 44px;
width: 44px;
border: none;
cursor: pointer;
background-color: #7c7c7c7b;
transition: 0.2s ease-in-out;
}
input.search-bar {
border: none;
outline: none;
padding: 0.4em 1em;
border-radius: 24px;
background-color: #e682827b;
color: white;
font-family: inherit;
font-size: 120%;
}
button:hover{
background-color: #e67e7e9b ;
}
h1.temp
{
margin:0 ;
}
.description{
text-transform: capitalize;
}