-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
46 lines (40 loc) · 960 Bytes
/
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
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f1f1f1;
}
#wrapper {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
border-radius: 10px;
text-align: center;
}
h1 {
color: #333333;
font-size: 32px;
margin-bottom: 30px;
}
.emoji {
font-size: 72px;
margin-bottom: 20px;
}
ul {
list-style: none;
padding: 0;
}
li {
font-size: 18px;
margin-bottom: 20px;
padding: 15px;
background-color: #f9f9f9;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease;
}
li:hover {
background-color: #e9e9e9;
}