aboutsummaryrefslogtreecommitdiff
path: root/common/css/main.css
blob: fa0b1d36acfd7aff5f14a3bbde7c62777c3e7123 (plain) (blame)
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
html {
	height: 100%; 
	width: 100%;
}

body {
	z-index: 1; 
	height: 100%; 
	width: 100%; 
	background-position: center; 
	background-attachment: fixed;
}

.itemlist {
	border-radius: 6px; 
	background-color: rgba(0, 0, 0, .4); 
	padding: 20px;
	box-sizing: border-box;
}

.itemlist a {
	color: #fff;
}

#wrapper {
	font-size: 80px;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding-bottom: 3px;
	width: fit-content;
	height: auto;
	max-width: 80%;
	max-height: 85%;
	overflow: auto;
	display: flex;
	overflow-y: scroll;
}

#wrapper a {
	transition: .3s all;
}

#wrapper a:hover {
	color: #c4c4c4;
}

#wrapper .link {
	display: inline-block;
	width: 33%;
	float: left;
	text-align: center;
}

#wrapper::-webkit-scrollbar {
	width: 10px;
	background-color: transparent;
}

#wrapper::-webkit-scrollbar-thumb {
	border-radius: 6px;
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.4);
	background-color: rgba(255,255,255,.2);
}