-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (101 loc) · 1.63 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
padding: 20px;
background-color: #f7f8fa;
color: #333;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
}
.game {
display: flex;
justify-content: space-between;
align-items: center;
}
.game button {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
margin-bottom: 10px;
}
.game button:hover {
background-color: #0056b3;
}
.red-dot {
background: url("assets/img/avatar.png");
background-size: cover;
position: absolute;
width: 100px;
height: 100px;
}
#score {
font-size: 20px;
margin-bottom: 10px;
font-weight: bold;
}
img {
width: 100px;
border-radius: 16px;
position: absolute;
top: 20px;
right: 20px;
}
@media (max-width: 767px) {
img {
display: none;
}
}
h1, h2, h3 {
margin: 0;
font-weight: bold;
color: #111;
}
h1 {
font-size: 28px;
margin-bottom: 20px;
}
h2 {
font-size: 24px;
margin-top: 20px;
margin-bottom: 10px;
}
h3 {
font-size: 20px;
margin-top: 20px;
margin-bottom: 10px;
}
p {
text-align: justify;
margin-bottom: 10px;
}
ul {
list-style-type: disc;
padding-left: 20px;
margin-bottom: 15px;
}
a {
color: #0074d9;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
article {
/* background: #fff; */
/* padding: 10px; */
/* border-radius: 12px; */
/* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
margin-bottom: 20px;
}