blob: 5bc34d279b85b934081f7604b936c7238f872637 (
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
|
body {
padding: 1%;
background-color: #1a1a1a;
font-family: monospace;
font-size: 1rem;
color: #7ef07e;
}
p {
text-align: justify;
}
a {
color:rgb(51, 200, 234);
text-decoration:none;
}
a:hover{
color: #c5f0ff;
}
.header {
text-align: center;
margin: auto;
padding: 5px;
}
.header img{
max-width: 150px;
width: 150px;
}
.header p {
text-align: center;
}
.feature-img {
text-align: center;
width: 100%;
/*! height: 35vh; */
}
.inv img {
width: 64px;
height: 64px;
border: 1px;
}
#menu {
text-align: center;
}
#menu a {display:inline-block;}
.footer {
text-align: center;
}
.inv {display:block;text-align:center;}
pre {overflow:auto;}
.whole{
/*! background-color: #3a3a3a;
display: grid;*/
}
#gotop-link{
text-align: right;
font-size: 0.8rem;
}
.container {
/*background-color: #3a3a3a;
max-width: 60vw;
margin: auto;
padding: 2%;
display: grid;
border-radius: 6px;
width: 40vw;
overflow: auto; */
}
|