-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (116 loc) · 2.1 KB
/
style.css
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
@import url('https://fonts.googleapis.com/css2?family=Mina:wght@400;700&display=swap');
body {
font-family: 'Mina', sans-serif;
}
.top {
width: 100%;
height: 100px;
font-size: 30px;
font-weight: bold;
display: flex;
align-items: center;
background-image: url(./img/8BitSMP.png);
justify-content: center;
color: #fff;
background-position-x: center;
background-position-y: 20%;
font-family: Arial, Helvetica, sans-serif;
}
.dashboard {
display: flex;
height: 100%;
}
.links {
background-color: rgb(187, 187, 187);
text-decoration: none;
display: flex;
width: 250px;
height: 40px;
color: rgb(0, 0, 0);
align-items: center;
}
.links:hover {
background-color: rgb(169, 169, 255);
color: #000;
}
.link_active {
background-color: rgb(0,0,255);
color: #fff;
}
.usage {
margin-left: 50px;
margin-top: 15px;
}
.stop {
background-color: rgb(255,0,0);
padding: 10px;
}
.fotos {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}
.bilder {
width: 24%;
height: auto;
margin-left: 2px;
margin-right: 2px;
margin-top: 2px;
margin-bottom: 2px;
}
.screenshotlink {
margin-bottom: 15px;
margin-left: 20px;
margin-right: 10px;
}
.spielermanagement {
display: flex;
}
.spieler {
margin-right: 50px;
}
.plugins {
color:rgb(0, 0, 0);
text-decoration: none;
}
.waypointslink {
margin-bottom: 15px;
margin-right: 10px;
}
@media only screen and (max-width: 1080px) {
.links {
width: 100%;
}
.dashboard {
flex-direction: column;
}
.usage {
margin-left: 0px;
}
.margin {
margin-top: 30px;
}
.fotos {
flex-direction: column;
}
.bilder {
width: 100%;
}
.spieler {
margin-right: 0px;
}
.spielermanagement {
flex-direction: column;
}
.screenshotlink {
margin-top: 40px;
width: 90%;
margin-left: 5%;
}
.waypointslink {
margin-top: 40px;
width: 90%;
margin-left: 5%;
}
}