-
Notifications
You must be signed in to change notification settings - Fork 0
/
comment.css
171 lines (167 loc) · 3.43 KB
/
comment.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
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
163
164
165
166
167
168
169
170
#all_content{
position: absolute;
top: 100px;
width: 99%;
}
#box{
width: 100%;
height: 500px;
/* 讓底突有透明的效果 */
background-image:linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(src/comment/bg2.jpg);
}
#box p{
color: white;
text-align: center;
font-size: 35px;
background-color: rgba(255,255,255,0.25);
}
button{
width: 60px;
padding: 5px;
border: none;
background-color:rgb(62, 104, 104);
color: white;
}
button:hover{
color:rgb(62, 104, 104);
background-color: white;
}
#input_content{
position: relative;
left: 38%;
}
label{
font-size: 20px;
}
.style1{
border: 3px solid white;
font-size: 30px;
padding: 10px;
border-radius: 100%;
background-color: rgba(255,255,255,0.5);
font-family: "Noto Serif TC";
}
.style2{
border: 3px solid pink;
font-size: 25px;
padding: 10px;
border-radius: 100%;
background-color: rgba(255,192,203,0.5);
font-family: "Noto Serif TC";
}
.style3{
border: 3px solid skyblue;
font-size: 20px;
padding: 10px;
border-radius: 100%;
background-color: rgba(135,206,235,0.5);
font-family: "Noto Serif TC";
}
.style4{
border: 3px solid lightgoldenrodyellow;
font-size: 15px;
padding: 10px;
border-radius: 100%;
background-color: rgba(250,250,210,0.5);
font-family: "Noto Serif TC";
}
.style5{
border: 3px solid plum;
font-size: 20px;
padding: 10px;
border-radius: 100%;
background-color: rgba(221,160,221,0.5);
font-family: "Noto Serif TC";
}
/* 排行榜 */
#hot{
margin-top: 20px;
padding: 10px;
background-image:linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3)), url(src/comment/bg3.jpeg);
font-size: 18px;
}
#hot h2{
text-align: center;
font-size: 28px;
}
#hot ol{
padding: 10px;
/* background-color: rgba(255,255,255,0.4); */
}
.bar{
margin: 10px;
width: 10em;
border-right-style: solid;
border-right-color: rgba(62, 104, 104,1);
}
@keyframes bar1{
from{border-right-width: 0px;}
to {border-right-width: 600px;}
}
@keyframes bar2{
from{border-right-width: 0px;}
to {border-right-width: 540px;}
}
@keyframes bar3{
from{border-right-width: 0px;}
to {border-right-width: 450px;}
}
@keyframes bar4{
from{border-right-width: 0px;}
to {border-right-width: 296px;}
}
@keyframes bar5{
from{border-right-width: 0px;}
to {border-right-width: 284px;}
}
#dai{
animation: bar1 6s ease;
border-right-width: 600px;
}
#guo{
animation: bar2 6s ease;
border-right-width: 540px;
}
#yung{
animation: bar3 6s ease;
border-right-width: 450px;
}
#zheng{
animation: bar4 6s ease;
border-right-width: 296px;
}
#zhunag{
animation: bar5 6s ease;
border-right-width: 284px;
}
th{
background-color: rgba(255, 255, 255, 0.5);
}
table,td,th{
border: rgba(255,255,255,0.5) solid 2px;
border-collapse: collapse;
}
.photo img{
border-radius: 60%;
margin: 10px;
width: 200px;
height: 200px;
opacity: 0.8;
}
td{
padding: 10px;
text-align: center;
}
#push button {
width: 70%;
text-align: center;
background-color: darkslategrey;
color: wheat;
border-radius: 50px;
}
#push{
background-image:linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3)), url(src/comment/bg4.jpeg);
display: flex;
justify-content: center;
padding: 25px;
}