-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (66 loc) · 1.7 KB
/
styles.css
File metadata and controls
72 lines (66 loc) · 1.7 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: flex-start;
align-items: center;
}
.container {
text-align: center;
margin-left: -17%; /* Abstand zur linken Seite anpassen */
max-width: 30%; /* Maximale Breite des Containers */
min-width: 30%; /* Maximale Breite des Containers */
}
.title {
font-family: 'Roboto', sans-serif;
color: rgb(1, 255, 158);
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
position: relative;
display: inline-block;
margin-left: -3%;
}
.separator {
content: "";
height: 5px;
width: 60%;
display: block;
left: 0;
right: 0;
border-radius: 50%;
align-content: center;
background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,0.014443277310924318) 0%, rgba(140,140,140,1) 33%, rgba(181,181,181,1) 66%, rgba(255,255,255,0) 100%);
bottom: 0;
margin-left: 18%;
}
.separator2 {
content: "";
height: 5px;
width: 30%;
display: block;
left: 0;
right: 0;
align-content: center;
background: rgb(1, 255, 158);
box-shadow: 0px 5px 30px #01ff9e, 0px -5px 30px #01ff9e;
margin-left: 33%;
margin-top: -0.9%;
}
.content {
font-family: 'Roboto', sans-serif;
margin-top: 5%;
margin-left: 29%;
border-radius: 10px;
border: 1px solid rgb(128, 128, 128);
background-color: rgba(109, 109, 109, 0.397);
max-width: 30%; /* Maximale Breite des Containers */
min-width: 20%; /* Maximale Breite des Containers */
font-size: 16px;
overflow-wrap: break-word;
padding: 5%;
color: white;
}