-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
143 lines (123 loc) · 2.59 KB
/
main.css
File metadata and controls
143 lines (123 loc) · 2.59 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
132
133
134
135
136
137
138
139
140
141
142
143
:root {
--bg-color: #22272e;
--text-color: #adbac7;
--accent-color: #802433;
--border-color: #444c56;
--container-bg: #2d333b;
--input-bg: #1c2128;
}
body {
zoom: 1.5;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
line-height: 1.5;
margin: 0;
padding: 20px;
background: var(--bg-color);
color: var(--text-color);
min-height: 100vh;
}
.container {
background: var(--container-bg);
border: 1px solid var(--border-color);
padding: 2rem;
border-radius: 6px;
max-width: 600px;
margin: 16px auto;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
h1,
h3,
h4 {
color: var(--text-color);
margin-top: 0;
text-align: center;
}
h1 {
border-bottom: 1px solid var(--border-color);
padding-bottom: 0.5rem;
margin-bottom: 1.5rem;
}
input[type="text"] {
padding: 0.5rem 0.75rem;
background: var(--input-bg);
border: 1px solid var(--border-color);
border-radius: 4px;
color: var(--text-color);
font-size: 14px;
transition: all 0.2s;
box-sizing: border-box;
}
input[type="text"]:focus {
border-color: var(--accent-color);
box-shadow: 0 0 0 3px rgba(83, 155, 245, 0.15);
outline: none;
}
.search-container {
position: relative;
width: 100%;
margin-bottom: 1rem;
}
.search-container input[type="text"] {
width: 100%;
padding-right: 2.8rem;
font-size: 1rem;
}
.search-container button[type="submit"] {
position: absolute;
top: 0;
right: 0;
height: 100%;
font-size: 1rem;
background: transparent;
border: none;
cursor: pointer;
padding: 0 1rem;
display: flex;
align-items: center;
justify-content: center;
}
.search-container .fa-search {
color: var(--accent-color);
font-size: 1em;
transition: transform 0.2s ease;
}
.search-container button[type="submit"]:hover .fa-search {
transform: scale(1.15);
}
p {
margin: -1rem 0;
}
h3 {
color: var(--accent-color);
}
p > b {
color: #dcbdfb;
}
hr {
border: none;
border-top: 1px dashed var(--border-color);
margin: 1rem 0;
}
.table-wrapper {
overflow-x: auto;
margin-bottom: 2rem;
}
table {
width: 100%;
border-collapse: collapse;
border: 1px solid var(--border-color);
}
table thead th {
padding: 8px;
background-color: var(--accent-color);
color: var(--text-color);
border: 1px solid var(--border-color);
}
table tbody td {
padding: 8px;
border: 1px solid var(--border-color);
color: var(--text-color);
}
table tbody tr:nth-child(odd) {
background-color: rgba(0, 0, 0, 0.1);
}