-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
127 lines (109 loc) · 2.58 KB
/
Copy pathstyle.css
File metadata and controls
127 lines (109 loc) · 2.58 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
123
124
125
126
127
@page {
margin: 2.5cm;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
line-height: 1.5;
color: #2d3748;
background-color: #ffffff;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
/* Definition für den Seitenumbruch */
.page-break {
display: block;
page-break-before: always; /* Für ältere Renderer */
break-before: page; /* Moderner Standard */
height: 0;
margin: 0;
border: none;
}
h1 {
font-size: 26pt;
color: #1a3a5f;
margin-bottom: 0;
font-weight: 700;
}
.title-sub {
font-size: 14pt;
color: #4a5568;
margin-top: 5px;
border-bottom: 2px solid #1a3a5f;
padding-bottom: 10px;
margin-bottom: 20px;
}
h2 {
font-size: 16pt;
color: #1a3a5f;
margin-top: 25px;
padding-bottom: 5px;
border-bottom: 1px solid #e2e8f0;
display: block;
}
h2 img {
height: 1.1em;
width: auto;
vertical-align: -0.15em;
margin-right: 12px;
}
h2 span {
vertical-align: middle;
}
h3 {
font-size: 12pt;
margin-top: 15px;
margin-bottom: 5px;
color: #2d3748;
font-weight: 700;
}
.contact-info {
list-style: none;
padding: 0;
margin: 20px 0;
font-size: 10pt;
color: #4a5568;
}
.contact-info li {
margin-bottom: 5px;
}
.contact-info img {
height: 1em;
width: auto;
vertical-align: -0.1em;
margin-right: 10px;
}
ul {
padding-left: 1.5rem;
}
li {
margin-bottom: 4px;
font-size: 10pt;
}
/* Verhindert unschöne Umbrüche innerhalb von Blöcken */
section, .job-entry, h3, h3 + p, h3 + ul {
page-break-inside: avoid;
break-inside: avoid;
}
.header-container {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 30px; /* Abstand zum Profil-Text */
}
/* Der linke Bereich für Name und Kontakt */
.header-content {
flex: 1; /* Nimmt den verfügbaren Platz ein */
padding-right: 30px; /* Abstand zum Foto */
}
/* Das Foto selbst */
.header-photo img {
width: 130px; /* Standardgröße für DE-Lebensläufe */
height: auto; /* Behält das Seitenverhältnis bei */
border-radius: 8px; /* Moderne, leicht abgerundete Ecken */
box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Dezenter Schatten für Tiefe */
object-fit: cover; /* Stellt sicher, dass das Bild den Bereich füllt */
}
/* WICHTIG: Damit die H1 im Flex-Container nicht springt */
.header-content h1 {
margin-top: 0;
}