-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (50 loc) · 1011 Bytes
/
Copy pathstyles.css
File metadata and controls
55 lines (50 loc) · 1011 Bytes
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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: #222;
font-family: 'Open Sans', sans-serif;
font-size: 120%;
background-image: url('https://source.unsplash.com/1600x900/?city,night');
background-repeat: no-repeat;
background-size: cover;
}
.card {
background: #000000d0;
color: white;
padding: 2em;
border-radius: 30px;
width: 100%;
max-width: 420px;
margin: 1em;
}
button {
margin: 0.5em;
border-radius: 50%;
border: none;
height: 46px;
width: 46px;
background: #7c7c7c2b;
color: white;
cursor: pointer;
transition: 0.1s ease-in-out;
}
input.search-bar {
border: none;
outline: none;
padding: 0.5em 1em;
border-radius: 24px;
background: #7c7c7c2b;
color: white;
font-family: inherit;
font-size: 120%;
width: calc(100% - 120px);
}
button:hover {
background: #7c7c7c6b;
}
.hidden{
display: none;
}