-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
68 lines (60 loc) · 1.04 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
html,
body {
margin: 0;
padding: 0;
font-family: 'Rubik', sans-serif;
background-color: #EEF0F4;
user-select: none;
}
.container {
display: flex;
flex-direction: column;
max-width: 320px;
margin: 30px auto;
}
img {
width: 150px;
margin: 0 auto;
}
input {
color: #432000;
background-color: #DCE1EB;
border: 0;
padding: 15px;
border-radius: 8px;
font-size: 20px;
text-align: center;
font-family: 'Rubik', sans-serif;
margin: 10px 0;
}
button {
color: #FDFDFD;
background-color: #AC485A;
border: 0;
padding: 15px;
border-radius: 8px;
font-size: 20px;
text-align: center;
font-family: 'Rubik', sans-serif;
}
ul {
padding: 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 10px;
list-style: none;
}
ul li {
background-color: aliceblue;
border-radius: 8px;
padding: 10px;
}
li:hover {
background-color: #FFECC7;
color: brown;
cursor: pointer;
}
button:hover {
background-color: #432000;
}