summaryrefslogtreecommitdiff
path: root/src/style.css
blob: 8149462cf60de14bcd0cdd42331faf2400ec785b (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
body {
	background: black;
	color: white;
	height: 100vh;
	max-height: 100vh;
	display: flex;
	flex-direction: column;
	margin: 0;
}

main, #slideshow {
	height: 100%;
	display: flex;
	flex-direction: column;
}

svg {
	fill: white;
	width: 100%;
	height: 100%;
}

#slideshow-carousel {
	height: 100%
}

.carousel-cell {
	height: 100%;
	width: 80vw;

	margin: 24px;


}

.carousel-cell img {
	vertical-align: middle;
/*	border-radius: 10px; */
	height: 100%;
	max-width: 100%;
	object-fit: contain;
}

#slideshow-share button,
#slideshow-bottom-controls button {
	background: none;
	border: none;
	padding: 0;
}

#slideshow-share svg { height: 24px; width: 24px; }
#slideshow-share button {
	padding: 12px;
	width: 48px;
	height: 48px;
}

#slideshow-share,
#slideshow-bottom-controls {
	display: flex;
	width: 80vw;
	margin: auto;
	justify-content: right;
}


#slideshow-bottom-controls {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 48px auto;
	max-width: 768px;
	button {
		width: 48px;
		height: 48px;
		margin: auto;
	}
}

footer {
	width: 100%;
}

#bottom-container {
	max-width: 1024px;
	margin: auto;
}

#menu {
	a { width: 100%; height: 48px }
	display: flex;
	width: 100%;
	padding: 16px;
	box-sizing: border-box;
	border-top: 1px solid rgb(55, 65, 81);
}