dschandra commited on
Commit
3b61118
·
verified ·
1 Parent(s): 2f4677c

Create static/css/style.css

Browse files
Files changed (1) hide show
  1. static/css/style.css +129 -0
static/css/style.css ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* static/css/style.css */
2
+ body {
3
+ font-family: Arial, sans-serif;
4
+ background-color: #1a1a1a;
5
+ color: #fff;
6
+ margin: 0;
7
+ padding: 0;
8
+ }
9
+
10
+ header {
11
+ background-color: #004aad;
12
+ padding: 1rem;
13
+ text-align: center;
14
+ }
15
+
16
+ header h1 {
17
+ margin: 0;
18
+ font-size: 2rem;
19
+ }
20
+
21
+ nav a {
22
+ color: #fff;
23
+ margin: 0 1rem;
24
+ text-decoration: none;
25
+ }
26
+
27
+ nav a:hover {
28
+ text-decoration: underline;
29
+ }
30
+
31
+ main {
32
+ max-width: 1200px;
33
+ margin: 2rem auto;
34
+ padding: 0 1rem;
35
+ }
36
+
37
+ .upload-section, .result-section, .leaderboard-section {
38
+ background-color: #2a2a2a;
39
+ padding: 2rem;
40
+ border-radius: 8px;
41
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
42
+ }
43
+
44
+ h2 {
45
+ color: #00aaff;
46
+ }
47
+
48
+ form {
49
+ display: flex;
50
+ flex-direction: column;
51
+ gap: 1rem;
52
+ }
53
+
54
+ label {
55
+ font-weight: bold;
56
+ }
57
+
58
+ input[type="text"], input[type="file"] {
59
+ padding: 0.5rem;
60
+ border: 1px solid #444;
61
+ border-radius: 4px;
62
+ background-color: #333;
63
+ color: #fff;
64
+ }
65
+
66
+ button {
67
+ background-color: #00aaff;
68
+ color: #fff;
69
+ padding: 0.75rem;
70
+ border: none;
71
+ border-radius: 4px;
72
+ cursor: pointer;
73
+ }
74
+
75
+ button:hover {
76
+ background-color: #0088cc;
77
+ }
78
+
79
+ .drs-verdict {
80
+ margin-bottom: 1rem;
81
+ }
82
+
83
+ .replay-container {
84
+ margin: 2rem 0;
85
+ }
86
+
87
+ video {
88
+ width: 100%;
89
+ max-width: 800px;
90
+ border-radius: 4px;
91
+ }
92
+
93
+ table {
94
+ width: 100%;
95
+ border-collapse: collapse;
96
+ margin-top: 1rem;
97
+ }
98
+
99
+ th, td {
100
+ padding: 0.75rem;
101
+ text-align: left;
102
+ border-bottom: 1px solid #444;
103
+ }
104
+
105
+ th {
106
+ background-color: #004aad;
107
+ }
108
+
109
+ .btn {
110
+ display: inline-block;
111
+ background-color: #00aaff;
112
+ color: #fff;
113
+ padding: 0.5rem 1rem;
114
+ text-decoration: none;
115
+ border-radius: 4px;
116
+ }
117
+
118
+ .btn:hover {
119
+ background-color: #0088cc;
120
+ }
121
+
122
+ footer {
123
+ background-color: #004aad;
124
+ text-align: center;
125
+ padding: 1rem;
126
+ position: fixed;
127
+ bottom: 0;
128
+ width: 100%;
129
+ }