-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
131 lines (112 loc) · 2.2 KB
/
style.css
File metadata and controls
131 lines (112 loc) · 2.2 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
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;
}
/* --- NEW YOUTUBE FEED STYLES --- */
.feed-box {
text-align: center;
border: 2px inset #c0c0c0;
background: #808080;
color: #ffffff;
padding: 15px;
margin: 20px 0;
}
.feed-title {
font-family: "Verdana", sans-serif;
font-size: 12px;
font-weight: bold;
display: block;
margin-bottom: 10px;
text-transform: uppercase;
}
.video-thumb {
border: 3px double #ffffff;
max-width: 200px;
height: auto;
margin-bottom: 5px;
}
#youtube-feed a {
color: #ff0000; /* Neon cyan for visibility on grey background */
text-decoration: underline;
font-size: 14px;
font-weight: bold;
}
/* ------------------------------ */
.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;
}