-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (82 loc) · 1.53 KB
/
style.css
File metadata and controls
97 lines (82 loc) · 1.53 KB
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
body {
background-color: #c0c0c0;
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQImWNgYGD4z4AE/gMADQwB/ryLh9IAAAAASUVORK5CYII=');
font-family: "Comic Sans MS", "Arial", sans-serif;
margin: 0;
padding: 20px;
color: #000;
}
.container {
width: 640px;
margin: 0 auto;
background-color: #fff;
border: 2px outset #c0c0c0;
padding: 20px;
}
.batarongText {
font-size: 38px;
font-weight: bold;
text-align: center;
margin: 20px 0;
}
p, h4, ul {
font-size: 14px;
line-height: 1.5;
}
a {
color: #0000FF;
}
a:visited {
color: #800080;
}
a:hover {
color: #FF0000;
}
.button {
display: grid;
grid-template-columns: repeat(4, 88px);
gap: 8px;
justify-content: center;
padding: 0;
margin: 20px 0;
}
.button img {
image-rendering: pixelated;
width: 88px;
height: 31px;
border: 2px outset #c0c0c0;
}
.button img:hover {
border: 2px inset #c0c0c0;
filter: none;
transform: none;
box-shadow: none;
}
.marquee {
background-color: #000080;
color: #fff;
padding: 5px;
margin: 20px 0;
font-weight: bold;
}
hr {
border: none;
border-top: 2px groove #c0c0c0;
margin: 20px 0;
}
.counter {
text-align: center;
font-size: 12px;
margin: 20px 0;
}
.blink {
animation: blink 1s steps(2, start) infinite;
}
@keyframes blink {
to { visibility: hidden; }
}
.construction {
text-align: center;
font-weight: bold;
color: #FF0000;
}