-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCV.css
115 lines (107 loc) · 1.66 KB
/
CV.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
body {
font: 100% Helvetica, sans-serif;
background: linear-gradient(to right, #bc6c25, #d4a373);
}
body h2 {
color: #9b2226;
}
.header {
width: 100%;
background-color: #bc6c25;
}
.header .navbar {
list-style: none;
padding: 0;
margin: 0;
}
.header .navbar li {
display: inline;
margin: 0 15px;
}
.header .navbar li a {
color: #fff;
text-decoration: none;
transition: color 0.3s;
}
.header .navbar li a:hover {
color: #ffb703;
}
.left-image {
position: relative;
}
.left-image img {
position: absolute;
top: 0;
left: 0;
max-width: 337px;
max-height: 383px;
}
.container {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 20px;
padding: 20px;
}
@media (max-width: 768px) {
.container {
grid-template-columns: 1fr;
}
}
.column {
background-color: #faedcd;
padding: 15px;
border-radius: 5px;
}
.column h2 {
font-size: 1.5rem;
margin-bottom: 10px;
}
.column ul {
list-style: none;
padding: 0;
}
.column ul li {
margin: 5px 0;
}
.video {
position: relative;
padding-bottom: 56.25%; /* 16:9 aspect ratio */
height: 0;
overflow: hidden;
}
.video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
.footer {
background-color: #d4a373;
color: #fff;
padding: 20px;
text-align: center;
}
.footer .navbar {
list-style: none;
padding: 0;
margin: 0;
}
.footer .navbar li {
display: inline;
margin: 0 15px;
}
.footer .navbar li a {
color: #fff;
text-decoration: none;
transition: color 0.3s;
}
.footer .navbar li a:hover {
color: #ca6702;
}
@media (max-width: 600px) {
.social-links li {
margin: 0 10px;
}
}/*# sourceMappingURL=CV.css.map */