-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvid.css
109 lines (97 loc) · 1.76 KB
/
vid.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
/* General styles */
body {
background-color: #121212;
color: white;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
}
header h1 {
text-align: center;
margin: 20px 0;
}
.container {
display: flex;
justify-content: space-between;
width: 90%;
margin: 20px auto;
}
.column {
width: 30%;
display: flex;
flex-direction: column;
align-items: center;
}
#options {
display: flex;
flex-direction: column;
align-items: center;
overflow-y: auto;
max-height: 300px;
margin-bottom: 20px;
}
#options button {
width: 90%;
margin: 5px 0;
padding: 10px;
background-color: #2c2c2c;
border: 1px solid #444;
color: white;
cursor: pointer;
border-radius: 4px;
}
.action-buttons button {
margin: 5px;
padding: 10px;
background-color: #2c2c2c;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
/* Modal styles */
.modal {
display: none;
position: fixed;
z-index: 1000;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
display: flex;
justify-content: center;
align-items: center;
}
.modal-content {
background-color: #2c2c2c;
color: white;
border-radius: 8px;
padding: 20px;
width: 90%;
max-width: 400px;
text-align: center;
}
.modal-buttons button {
margin: 10px;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
#submit-card-repl {
background-color: #4caf50;
}
#cancel-card-repl {
background-color: #f44336;
}
.close {
position: absolute;
top: 10px;
right: 10px;
font-size: 1.5em;
cursor: pointer;
}