-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv-index.css
45 lines (40 loc) · 898 Bytes
/
cv-index.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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
background-color: antiquewhite;
}
.cv-platform {
width: fit-content;
}
/* ------------- ####### CSS HEADER ####### ------------- */
.cv-header {
width: 90%;
background-color: aquamarine;
}
/* ------------- ####### CSS SLIDER ####### ------------- */
.cv-slider {
width: 95%;
background-attachment: fixed;
}
/* ------------- ####### CSS BUILDER ####### ------------- */
.cv-builder {
width: 95%;
background-color: violet;
}
/* ------------- ####### CSS FOOTER ####### ------------- */
.cv-footer {
background-color: tomato;
}
.cv-footer-copyright {
float: left;
border: 1px solid salmon;
}
.cv-footer-social {
float: none;
border: 1px solid cornflowerblue;
}
.cv-footer-chatbox {
float: right;
border: 1px solid bisque;
}