-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (102 loc) · 1.81 KB
/
style.css
File metadata and controls
122 lines (102 loc) · 1.81 KB
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
119
120
121
122
body {
background-color: #1B1B1BFF;
font-family: 'IBM Plex Mono', monospace;
color: #ffffff; /* weiße Textfarbe */
margin: 0;
padding: 20px;
line-height: 1.6;
}
header {
background-color: rgb(50, 50, 50);
padding: 10px;
padding-bottom: 20px;
border-radius: 8px;
margin-bottom: 20px; /* Außen: Platz nach unten zu anderen Elementen */
}
header h1 {
margin: 0;
color: #ffffff;
a {
img {
margin-top: 10px;
}
}
}
footer {
margin-top: 20px;
padding-top: 10px;
border-top: 1px solid #555;
text-align: center;
color: #aaaaaa;
}
a {
color: #179f1e; /* helles Blau für Links */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Tabellen stylen */
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
border-radius: 10px;
overflow: hidden;
border-bottom: #808080FF;
}
table th {
background-color: rgb(40, 40, 40);
color: #ffffff;
padding: 12px;
text-align: left;
border-top: 1px solid #555;
}
table td {
padding: 12px;
border-bottom: 1px solid #808080FF;
color: #179f1e
}
table tr:hover {
background-color: rgb(45, 45, 45);
}
section {
border-top: 5px #179f1e;
border-collapse: collapse;
background-color: rgb(50, 50, 50);
border-radius: 10px;
padding: 15px;
}
.py {
color: #158c1b; /* Grün */
vertical-align: middle;
}
.guy {
color: #b8b5b5; /* Weiß */
vertical-align: middle;
}
header h1 img {
vertical-align: middle;
}
.layout {
display: flex;
gap: 20px;
align-items: flex-start;
}
.left {
flex: 2; /* nimmt 2/3 der Breite */
}
.right {
flex: 1; /* nimmt 1/3 der Breite */
max-height: fit-content;
background-color: rgb(50, 50, 50);
border-radius: 10px;
padding: 15px;
p {
margin-top: -25px;
}
.download {
padding-top: 15px;
border-top: 1px solid #555;
}
}