-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbetar.css
112 lines (95 loc) · 1.85 KB
/
betar.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
/* General Reset */
body, h1, h2, h3, p, div, footer {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background: linear-gradient(to bottom, #006a4e, #ba0000); /* National flag-inspired gradient */
color: #ffffff;
padding: 20px;
text-align: center;
}
/* Header Styles */
header {
background: rgba(0, 106, 78, 0.9); /* Green color with opacity */
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
header h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
header p {
font-size: 1.2rem;
color: #f0f0f0;
}
/* Main Section */
main {
margin: 20px auto;
max-width: 900px;
}
#radio-stations {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}
.card {
background: #ffffff;
color: #333;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 15px;
text-align: left;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.card h3 {
margin-bottom: 10px;
color: #006a4e; /* Green */
}
.card p {
margin-bottom: 15px;
}
.card button {
display: inline-block;
padding: 10px 15px;
background: #ba0000; /* Red */
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s ease;
}
.card button:hover {
background: #900000; /* Darker red */
}
/* Footer Styles */
footer {
margin-top: 20px;
background: rgba(186, 0, 0, 0.9); /* Red with opacity */
padding: 15px;
border-radius: 10px;
color: #fff;
font-size: 0.9rem;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
footer .disclaimer {
margin-bottom: 10px;
}
footer a {
color: #ffffff;
text-decoration: underline;
}
footer a:hover {
color: #ffffff;
}
footer p {
margin: 5px 0;
}