-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (118 loc) · 2.43 KB
/
Copy pathstyle.css
File metadata and controls
118 lines (118 loc) · 2.43 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
:root {
--primary: #FFD700;
--primary-hover: #FFA500;
--text-light: #ffffff;
--bg-overlay: rgba(0, 0, 0, 0.65);
--font-stack: 'CustomFont', Arial, sans-serif;
}
@font-face {
font-family: 'CustomFont';
src: url('font.ttf') format('truetype');
}
body {
font-family: var(--font-stack);
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #111;
}
#bg-layer {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-image: url('bg.png');
background-repeat: repeat;
z-index: -1;
will-change: background-position;
animation: scroll-bg 100s linear infinite;
}
@keyframes scroll-bg {
0% { background-position: 0px 0px; }
100% { background-position: -1000px 1000px; }
}
#container {
background-color: var(--bg-overlay);
padding: 30px;
border-radius: 12px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
display: flex;
flex-direction: column;
align-items: center;
max-width: 800px;
width: 90%;
}
h1 {
color: var(--text-light);
text-align: center;
margin-top: 0;
margin-bottom: 20px;
letter-spacing: 1px;
}
.controls {
display: flex;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 30px;
}
button {
background-color: var(--primary);
color: #333;
border: none;
padding: 10px 20px;
border-radius: 6px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: all 0.2s ease-in-out;
}
button:hover:not(:disabled) {
background-color: var(--primary-hover);
transform: translateY(-2px);
}
button:disabled {
opacity: 0.5;
cursor: not-allowed;
background-color: #cccccc;
}
#mainContent {
width: 100%;
display: block;
}
#mainContent.hidden {
display: none;
}
label {
color: var(--text-light);
font-size: 18px;
display: block;
margin-bottom: 10px;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
padding-bottom: 5px;
}
select {
width: 100%;
font-size: 16px;
padding: 10px;
border-radius: 6px;
border: 1px solid #ccc;
background-color: #fff;
font-family: var(--font-stack);
cursor: pointer;
overflow-y: auto;
}
select option {
padding: 5px;
}
select::-webkit-scrollbar {
width: 8px;
}
select::-webkit-scrollbar-thumb {
background: var(--primary);
border-radius: 4px;
}