-
Notifications
You must be signed in to change notification settings - Fork 0
/
nstyle.css
98 lines (83 loc) · 1.23 KB
/
nstyle.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
@media screen and (max-width: 500px) {
.body {
display: block;
}
}
*,
*::after,
*::before {
box-sizing: border-box;
margin: 0;
}
body {
display: grid;
grid-template-columns: 40% 60%;
grid-template-rows: 20% 1fr;
margin: 40px;
}
html {
font-size: 16px;
}
.header {
background-color: rgba(143, 9, 9, 0.8);
display: flex;
justify-content: center;
align-items: center;
border: transparent;
}
.image {
display: flex;
flex-direction: column;
justify-content: center;
padding: 30px;
background-color: rgba(143, 9, 9, 0.8);
border: transparent;
}
.image h1,
.image h2,
.image p {
margin: 10px 0;
}
.image p {
font-size: 20px;
}
.sidebar {
background-color: rgb(227, 222, 222);
padding-left: 30px;
padding-right: 10px;
margin: 0px 50px;
}
.mainpart {
padding-left: 30px;
}
h3 {
margin-top: 2rem;
position: relative;
padding-bottom: 5px;
}
h3::after {
content: "";
background: brown;
position: absolute;
bottom: 0;
left: 0;
height: 1px;
width: 50%;
}
/* Details */
#profilbild {
max-width: 45rem;
height: 80%;
border-radius: 50%;
}
#QR-Code {
padding-top: 1rem;
max-width: 10rem;
}
.date {
color: brown;
}
.sidebar span {
line-height: 200%;
padding: 5px;
}