blob: 7ec32ce4d4373cc462246936cd9cebaf938e45ca (
plain)
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
|
/*@font-face {
font-family: "sharetech";
src: url('{{ "/assets/ShareTech-Regular.ttf" | prepend: site.baseurl }}');
}*/
body {
color: white;
background-color: #222;
text-align: center;
}
img {
position: absolute;
top: 0;
left: 0;
object-fit: contain;
width: 100%;
height: 100%;
}
.slides {
width: 100%;
height: 90vh;
position: relative;
}
.controls {
margin: auto;
}
button, .button {
border-radius: 4px;
margin: 1em;
padding: 0.3em;
padding-right: 0.5em;
padding-left: 0.5em;
background-color: #fb0;
border: none;
box-shadow: 0px 0px 7px 7px #fb03;
font-size: 20px;
color: black !important;
text-decoration: none;
cursor: pointer;
transition: 0.2s;
font-family: "sharetech";
}
.button a {
color: #000;
}
button:enabled:hover, .button:hover {
box-shadow: 0px 0px 7px 7px #fb09;
}
button:enabled:active {
background-color: #615400;
color: #eee;
}
button:disabled {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
cursor: not-allowed;
}
button.pressed {
background-color: #615400;
color: #eee;
}
.input-form {
max-width: 44em;
margin: auto;
}
.grid {
display: grid;
grid-column-gap: 2em;
grid-template-columns: 40% 60%;
text-align: left;
margin-top: 3em;
}
.gridentry {
display: inline-grid;
align-content: center;
text-align: right;
}
a {
color: #fb0;
}
.remark {
text-align: justify;
margin-top: 3em;
color: #bbb;
}
|