This repository was archived by the owner on Mar 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
162 lines (133 loc) · 2.99 KB
/
style.css
File metadata and controls
162 lines (133 loc) · 2.99 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
*{
margin: 0;
}
body{
margin: 0;
padding: 10px;
font-family: monospace;
width: 100%;
min-width: 500px;
min-height: 300px;
overflow: visible;
overflow-y: hidden;
}
#input_in{
width: 200px;
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
box-sizing: border-box;
box-shadow: 0px 0px 2px rgb(22, 72, 119);
border-radius: 20px;
}
#input_in:hover{
transition: 0.3s;
box-shadow: 0px 0px 5px rgb(14, 7, 105);
}
.button{
position: relative;
border-radius: 50%;
font-size: larger;
padding-top: 8px;
border: 0px;
box-shadow: 0px 0px 4px rgb(31, 135, 177);
color: rgb(255, 255, 255);
background-color: rgb(31, 135, 177);
width: 40px;
height: 40px;
top:3px;
box-sizing: border-box;
}
.button img{
position: relative;
width: 23px;
height: 23px;
}
.button:nth-child(3){
background-color: rgb(165, 42, 73);
box-shadow: 0px 0px 3px rgb(165, 42, 73);
}
.button:nth-child(4){
background-color: rgb(119, 29, 155);
box-shadow: 0px 0px 3px rgb(119, 29, 155);
}
.button:nth-child(5){
background-color: rgb(29, 155, 103);
box-shadow: 0px 0px 3px rgb(29, 155, 103);
}
.button:nth-child(6){
background-color: rgb(133, 133, 133);
box-shadow: 0px 0px 3px rgb(104, 104, 104);
}
.button:active{
background-color: rgb(255, 255, 255);
color: rgb(31, 135, 177);
}
#list{
display: flex;
flex-direction: column;
font-size: 16px;
font-family: 'Times New Roman', Times, serif;
color:rgb(23, 170, 170);
overflow-x: scroll;
flex-wrap:wrap;
height:300px;
min-height: 200px;
}
#list li{
width: 200px;
overflow-wrap: break-word;
border: 0px solid transparent;
padding: 2px;
margin-right: 50px;
}
.button p{
visibility: hidden;
height: auto;
background-color: rgba(96, 137, 248, 0.26);
color: #01125c;
display:block;
text-align: center;
align-items: center;
justify-content: center;
border-radius: 6px;
padding: 5px 0px;
position: relative;
font-size: 10px;
width: 50px;
font-weight: bolder;
z-index: 3;
top: 0px;
left: -10px;
opacity: 0;
transition: 0.2s;
}
.button:hover > p{
visibility: visible;
opacity: 1;
}
#list img{
max-width: 190px;
max-height: 150px;
border: 0px solid transparent;
padding: 2px;
margin-right: 50px;
float: inline-start;
box-shadow: 0px 0px 3px rgb(165, 42, 73);
vertical-align: middle;
}
#list video{
max-width: 190px;
max-height: 150px;
border: 0px solid transparent;
padding: 2px;
margin-right: 50px;
float: inline-start;
box-shadow: 0px 0px 3px rgb(119, 29, 155);
vertical-align: middle;
}
#list a{
color: rgb(0, 192, 0);
text-decoration:none;
}