-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
135 lines (116 loc) · 2.22 KB
/
style.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
:root {
--primary-blue: #007bff;
--dark-blue: #004080;
--light-gray: #f8f9fa;
--medium-gray: #e9ecef;
--dark-gray: #495057;
--error-red: #ff4d4d;
}
body {
font-family: 'Roboto', 'Open Sans', sans-serif;
background-color: var(--light-gray);
color: var(--dark-gray);
margin: 0;
padding: 20px;
}
h1 {
font-size: 24px;
font-weight: bold;
color: var(--dark-blue);
}
h2 {
font-size: 20px;
font-weight: 600;
color: var(--primary-blue);
}
p, label {
font-size: 14px;
}
button {
font-size: 13px;
font-weight: bold;
color: white;
background-color: var(--primary-blue);
border: none;
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #0069d9;
}
button:active {
background-color: #0056b3;
}
input[type="text"], select {
padding: 6px;
font-size: 13px;
border: 1px solid var(--medium-gray);
border-radius: 4px;
width: 100%;
margin-top: 5px;
}
.container {
width: 80%;
max-width: 1000px;
margin: 0 auto;
padding: 10px;
}
.table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
.table th, .table td {
padding: 8px;
font-size: 13px;
border-bottom: 1px solid var(--medium-gray);
text-align: left;
}
.table th {
background-color: var(--medium-gray);
}
.table tr:nth-child(even) {
background-color: var(--light-gray);
}
.error {
color: var(--error-red);
font-size: 14px;
}
.toast {
position: fixed;
top: 10px;
right: 10px;
background-color: var(--primary-blue);
color: white;
padding: 10px;
border-radius: 4px;
display: none;
}
.section {
margin-bottom: 20px;
padding: 15px;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.game-header {
width: 80%;
max-width: 1000px;
margin: 0 auto 20px auto;
padding: 15px;
background-color: var(--primary-blue);
text-align: center;
border-radius: 8px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.game-header h1 {
color: white;
font-size: 28px;
font-weight: bold;
margin: 0;
}
.section h2 {
text-align: center;
margin-top: 0;
}