-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (94 loc) · 1.81 KB
/
style.css
File metadata and controls
110 lines (94 loc) · 1.81 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
*, *::before, *::after{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html{
scroll-behavior: smooth;
}
body{
background-color: rgb(29, 243, 172);
}
.content{
background-color: white;
font-size: 1.6rem;
font-family: 'Times New Roman', Times, serif;
word-spacing: 5px;
margin: 1em 6em;
padding: 1em;
border-radius: 20px;
}
.content > * {
letter-spacing: 1.4px;
word-spacing: 3px;
}
.highlight:hover{
background-color: rgb(255, 255, 0, 0.541);
cursor: pointer;
font-family: 'Times New Roman', Times, serif;
}
.sponsor{
opacity: 0.3;
}
.video-wrapper{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.input-wrapper{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 3em;
}
.input-wrapper > input{
padding: 0.5em;
border-radius: 10px;
font-family: sans-serif;
border: none;
font-size: 1.5rem;
}
.input-wrapper > button {
border: none;
padding: .4em .5em;
border-radius: 10px;
margin-left: 1em;
font-size: 1.5rem;
}
.input-wrapper > button:hover{
cursor: pointer;
}
.content > a {
color: black;
text-decoration: none;
}
/* Loading animation */
@keyframes skeletonLoading {
0%{
background-color: hsl(200, 20%, 70%);
}
100%{
background-color: hsl(200, 20%, 95%);
}
}
.skeleton{
width: 100%;
height: .7em;
margin-bottom: .25rem;
border-radius: .2rem;
background-color: rgba(0, 0, 0, 0.185);
animation: skeletonLoading 1s linear infinite alternate;
}
/* .skeleton:first-child{
transform: scaleX(0.8);
transform-origin: right;
} */
.skeleton:last-child{
margin-bottom: 0;
width: 80%;
}
.skeleton-video{
background-color: rgba(0, 0, 0, 0.185);
}