-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
143 lines (121 loc) · 2.61 KB
/
main.css
File metadata and controls
143 lines (121 loc) · 2.61 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
:root {
--swiper-theme-color: #cccccc;
}
html, body {
display: block;
width: 100%;
height: 100%;
margin: 0;
}
body {
background: radial-gradient(circle, #8686866e 40%, transparent 41%),radial-gradient(circle at bottom left, #8686866e 20%, transparent 21%),radial-gradient(circle at bottom right, #8686866e 20%, transparent 21%),radial-gradient(circle at top left, #8686866e 20%, transparent 21%),radial-gradient(circle at top right, #8686866e 20%, transparent 21%);
background-size: 1em 1em;
background-color: #f0eee8;
opacity: 1;
}
.wrapper {
width: 800px;
max-width: 90%;
margin-left: auto;
margin-right: auto;
margin-top: 32px;
margin-bottom: 16px;
padding: 4px;
border: 3px dashed #8686866e;
border-radius: 4px;
background: #f0eee8;
}
#top {
border-bottom: 1px dashed #8686866e;
padding-top: 12px;
padding-bottom: 12px;
padding-left: 0;
padding-right: 0;
display: flex;
flex-direction: column;
align-items: center;
}
section {
padding: 12px;
color: #666666;
}
section:not(#top):nth-child(odd) {
background: #d9d7d4;
}
section:last-child {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.flex {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: stretch;
}
.flex > * {
flex-grow: 1;
}
.copyright {
display: block;
text-align: center;
color: #8686866e;
border: 3px dashed #8686866e;
background: #f0eee8;
width: 300px;
max-width: 90%;
padding: 12px 4px;
margin-left: auto;
margin-right: auto;
margin-bottom: 12px;
}
.copyright a {
color: #5f5f5f6e;
text-decoration: none;
}
.copyright a:hover {
color: #506463;
}
/** Swiper Default **/
.swiper {
width: 100%;
}
#intro.swiper {
aspect-ratio: 6 / 4;
}
#intro.swiper img {
width: 100%;
filter: grayscale(1);
}
#record-videos.swiper {
aspect-ratio: 6 / 5;
}
#record-videos.swiper iframe {
margin: auto auto;
display: block;
user-select: none;
}
#record-videos.swiper .swiper-slide:not(.swiper-slide-active) {
transform: scale(0.75);
opacity: .75;
pointer-events: none;
}
#record-videos.swiper .swiper-slide-active {
transform: scale(1.3);
}
#record-videos.swiper .swiper-button-next {
bottom: 0;
top: auto;
left: 50%;
transform: translateX(-50%) rotate(90deg);
margin: 0;
padding: 0;
}
#record-videos.swiper .swiper-button-prev {
bottom: auto;
top: 0;
left: 50%;
transform: translateX(-50%) rotate(90deg);
margin: 0;
padding: 0;
}