-
Notifications
You must be signed in to change notification settings - Fork 2
/
404.html
140 lines (140 loc) · 3.16 KB
/
404.html
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
#error-wrap {
display: flex;
justify-content: center;
width: 100%;
margin-top: 1rem;
position: relative;
maxWidth768()
}
#error-wrap .error-content {
box-shadow: none !important;
border-radius: 12px;
background: var(--anzhiyu-card-bg) !important;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
margin: 0px 1rem;
height: 22rem;
max-width: 800px;
border-radius: 5px;
background: var(--anzhiyu-card-bg);
box-shadow: var(--card-box-shadow);
transition: all 0.3s ease 0s;
border: var(--style-border-always);
position: relative;
width: 100%;
maxWidth768()
}
#error-wrap .error-content .error-img {
flex: 1 1 0%;
height: 90%;
width: 600px;
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
background-color: #307af6;
background-position: center center;
background-size: cover;
height: 100%;
maxWidth768()
}
#error-wrap .error-content .error-info {
flex: 1 1 0%;
padding: 0.5rem;
text-align: center;
font-size: 14px;
font-family: $font-family;
maxWidth768()
}
#error-wrap .error-content .error-info .error_title {
font-size: 9em;
line-height: 1;
maxWidth768()
}
#error-wrap .error-content .error-info .error_subtitle {
word-break: break-word;
font-size: 1.6em;
-webkit-line-clamp: 2;
}
#error-wrap .error-content .error-info a {
display: inline-block;
margin-top: 0.5rem;
padding: 0.3rem 1.5rem;
background: var(--btn-bg);
color: var(--btn-color);
}
#error-wrap .error-content .error-info a i {
padding-right: 0.3rem;
}
.button--animated {
border-radius: 8px !important;
transition: 0.3s;
position: relative;
z-index: 1;
transition: color 1s ease 0s;
}
#body-wrap .error-box {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 1rem;
padding-top: 0px;
position: relative;
}
#body-wrap .error-box .aside-list {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
margin: 1rem;
max-width: 100%;
maxWidth768()
}
#body-wrap .error-box .aside-list .aside-list-group {
display: flex;
flex-direction: row;
flex-wrap: wrap;
max-width: 800px;
margin: 0 auto;
justify-content: space-between;
}
#body-wrap .error-box .aside-list .aside-list-item {
padding: 0.5rem 0;
width: 49%;
}
#body-wrap .error-box .aside-list .aside-list-item .thumbnail {
overflow: hidden;
width: 100%;
height: 200px;
background: var(--anzhiyu-card-bg);
display: flex;
border-radius: 12px;
maxWidth768()
}
#body-wrap .error-box .aside-list .aside-list-item img {
width: 100%;
object-fit: cover;
border-radius: 12px;
transition: 0.3s;
transition: filter 300ms ease-in 0.2s, transform 0.6s;
}
#body-wrap .error-box .aside-list .aside-list-item:hover img {
transform: scale(1.1);
filter: brightness(0.82);
}
#body-wrap .error-box .aside-list .aside-list-item .content .title {
-webkit-line-clamp: 2;
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
line-height: 1.5;
justify-content: center;
align-items: flex-end;
align-content: center;
padding-top: 0.5rem;
font-size: 16px;
font-weight: bold;
}
#body-wrap .error-box .aside-list .aside-list-item .content time {
display: none;
}