-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (55 loc) · 1.16 KB
/
Copy pathstyle.css
File metadata and controls
64 lines (55 loc) · 1.16 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
body {
color: white;
background: url("img/bg.jpg");
background-repeat: no-repeat;
background-size: auto 100%;
background-position: 40% top; }
.title-img {
width: 40vw;
margin-left: 30vw;
margin-bottom: 10vh; }
@media (max-width: 700px) {
.title-img {
width: 80vw;
margin-left: 10vw; } }
.mainpage-content {
width: 50vw;
margin-left: 25vw;
padding: 10px;
background-color: rgba(0, 0, 0, 0.7); }
@media (max-width: 950px) {
.mainpage-content {
width: 80vw;
margin-left: 10vw; } }
.tb-highlight-shown {
background-color: rgba(0, 116, 69, 0.5); }
.tb-highlight-showing {
background-color: rgba(34, 0, 114, 0.5); }
.anim-humming_1 {
opacity: 0.9;
animation: humming 0.23s infinite; }
.anim-humming_2 {
opacity: 0.9;
animation: humming 0.55s infinite; }
.anim-fade_in1 {
opacity: 1;
animation: fadein 2s; }
@keyframes humming {
0% {
opacity: 0.9; }
4% {
opacity: 0.83; }
8% {
opacity: 0.9; }
60% {
opacity: 0.9; }
63% {
opacity: 0.97; }
66% {
opacity: 0.9; } }
@keyframes fadein {
0% {
opacity: 0; }
100% {
opacity: 1; } }
/*# sourceMappingURL=style.css.map */