-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
77 lines (69 loc) · 1.16 KB
/
styles.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
75
76
77
html, body {
margin: 0;
padding: 0;
font-family: 'Rubik', sans-serif;
background-color: #eef0f4;
color: #432000;
user-select: none;
}
img {
width: 200px;
margin: 20px auto;
}
input {
color: #432000;
background-color: #dce1eb;
border: none;
padding: 20px;
border-radius: 10px;
text-align: center;
font-family: 'Rubik', sans-serif;
font-weight: 300;
font-size: 25px;
margin: 10px 0;
}
button {
color: #fdfdfd;
background-color: #ac485a;
border: none;
padding: 20px;
border-radius: 10px;
text-align: center;
font-family: 'Rubik', sans-serif;
font-weight: 600;
font-size: 20px;
}
button:hover {
background-color: #432000;
cursor: pointer;
}
.container {
display: flex;
flex-direction: column;
max-width: 320px;
margin: 30px auto;
}
ul {
display: flex;
flex-wrap: wrap;
gap: 15px;
list-style: none;
padding: 0;
font-family: 'Rubik', sans-serif;
font-weight: 300;
font-size: 20px;
text-align: center;
}
li {
background-color: #fffdf8;
padding: 10px;
border: none;
border-radius: 5px;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
flex-grow: 1;
font-family: 'Rubik', sans-serif;
}
li:hover {
background-color: #ffecc7;
cursor: pointer;
}