-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (67 loc) · 1.29 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
69
70
71
72
73
74
* {
margin: 0;
padding: 0;
}
header {
position: absolute;
display: flex;
align-content: center;
justify-content: center;
top: 0;
width: 100%;
height: 200px;
background: #00000050;
}
.box {
color: white;
display: flex;
margin: 0 auto;
line-height: 3rem;
margin-top: 3rem;
text-align: center;
justify-content: center;
align-items: center;
font-size: 40px;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 120vh;
margin: 0;
background: #222;
font-family: 'Merriweather Sans', sans-serif;
background-image: url("https://source.unsplash.com/1600x900/?lluvia");
background-repeat: no-repeat;
background-size: cover;
font-size: 120%;
overflow-y: hidden;
}
.card {
display: flex;
background: #000011d5;
color: white;
padding: 3em;
border-radius: 30px;
width: 75vw;
max-width:250px;
max-height: 500px;
margin: 0;
line-height: 1.5;
align-content: center;
justify-content: center;
}
button {
margin: 1em;
border-radius: 50%;
border: none;
height: 5em;
width: 5em;
transition: 0.2s ease-in-out;
}
.search{
justify-content: left;
}
button:hover{
background-color: rgba(223, 218, 218, 0.873);
}