-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesContactPage.css
146 lines (125 loc) · 2.25 KB
/
stylesContactPage.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/* Basic reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body styling */
body {
font-family: "Arial", sans-serif;
line-height: 1.6;
background-color: #f5efef;
color: #333;
padding: 20px;
}
/* Header styling */
header {
text-align: center;
margin-bottom: 20px;
background-color: #8d6868;
color: white;
padding: 20px;
border-radius: 10px;
}
header h1 {
font-size: 2.5em;
margin-bottom: 10px;
font-weight: bold;
}
header p {
font-size: 1.2em;
margin-bottom: 20px;
}
/* Main content styling */
main {
display: flex;
flex-direction: row;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
.content {
flex: 3;
margin-right: 20px;
}
/* Profile image container */
.profile-image-container {
flex: 1;
display: flex;
align-items: flex-start;
justify-content: center;
padding: 20px;
background-color: #e6ebf0;
border-radius: 20px;
}
.profile-image-container img {
max-width: 100%;
height: auto;
border-radius: 10px;
}
/* Section styling */
section {
margin-bottom: 20px;
padding: 15px;
border-radius: 10px;
}
section h2 {
font-size: 1.5em;
margin-bottom: 10px;
border-bottom: 2px solid #ddd;
padding-bottom: 5px;
}
section ul {
list-style-type: none;
padding-left: 0;
}
section ul li {
margin-bottom: 10px;
}
section ul li strong {
font-weight: bold;
}
/* Section colors */
.section-studium {
background-color: #c4dde9; /* Light blue */
}
.section-certificates {
background-color: #f7ddb7; /* Light orange */
}
.section-skills {
background-color: #c9f3c9; /* Light green */
}
.section-languages {
background-color: #fdd4d4; /* Light red */
}
.section-cv {
background-color: #e0cefc; /* Light purple */
}
/* CV Link styling */
.cv-link {
display: block;
margin-top: 10px;
padding: 10px;
background-color: #007bff;
color: #fff;
text-decoration: none;
text-align: center;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.cv-link:hover {
background-color: #0056b3;
}
/* Footer styling */
footer {
text-align: center;
margin-top: 20px;
font-size: 0.9em;
color: white;
background-color: #8d6868;
padding: 20px;
border-radius: 10px;
}