-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (82 loc) · 1.42 KB
/
style.css
File metadata and controls
94 lines (82 loc) · 1.42 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
body {
background: #0b0f1a;
color: #e0e0ff;
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
color: #00ffff;
text-shadow: 0 0 10px #00ffff;
}
.videos {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 20px;
padding: 20px;
}
.card {
background: #11152a;
border: 2px solid #00ffff;
box-shadow: 0 0 15px #00ffff44;
padding: 10px;
border-radius: 10px;
}
h3 {
margin: 10px 0;
color: #00ffcc;
text-shadow: 0 0 6px #00ffcc;
}
video {
width: 100%;
border-radius: 10px;
}
.actions {
margin-top: 10px;
}
button {
background: transparent;
border: 1px solid #ff00ff;
color: #ff00ff;
padding: 6px 14px;
margin: 5px;
font-size: 16px;
cursor: pointer;
box-shadow: 0 0 10px #ff00ff55;
}
button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
/* التعليقات */
.comments {
margin-top: 10px;
text-align: left;
}
.comments input {
width: 70%;
padding: 6px;
margin-right: 5px;
border-radius: 5px;
border: 1px solid #00ffff55;
background: #11152a;
color: #e0e0ff;
}
.comments button {
padding: 6px 10px;
border-radius: 5px;
border: 1px solid #00ffff;
background: transparent;
color: #00ffff;
cursor: pointer;
}
.comment-list {
margin-top: 10px;
max-height: 150px;
overflow-y: auto;
border-top: 1px solid #00ffff33;
padding-top: 5px;
}
.comment-item {
padding: 4px 0;
border-bottom: 1px solid #00ffff22;
}