-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspecialsuff.css
More file actions
85 lines (71 loc) · 2.08 KB
/
specialsuff.css
File metadata and controls
85 lines (71 loc) · 2.08 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
{
font-family: Arial, sans-serif;
background-color: #808080; /* Grey background */
color: white; /* White text */
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.rules-container {
background-color: #333; /* Darker container background */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
width: 80%;
max-width: 900px;
overflow: hidden;
}
.tab-bar {
display: flex;
background-image: linear-gradient(to right, #8A2BE2, #DDA0DD); /* Gradient purple tabs */
color: white;
}
.tab-button {
flex-grow: 1;
padding: 15px 20px;
text-align: center;
cursor: pointer;
border: none;
background: transparent;
color: white;
font-size: 16px;
transition: background-color 0.3s ease;
}
.tab-button:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.tab-button.active {
background-color: rgba(255, 255, 255, 0.2);
}
.tab-content {
padding: 20px;
}
.tab-content h2 {
margin-top: 0;
color: #eee;
border-bottom: 2px solid #555;
padding-bottom: 10px;
margin-bottom: 15px;
}
.rule-item {
margin-bottom: 15px;
line-height: 1.6;
}
/* Advanced Styling (Optional Enhancements) */
.tab-bar {
border-bottom: 1px solid #555;
}
.tab-button {
font-weight: bold;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.tab-content {
animation: fadein 0.5s ease-in-out;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}