-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathstyle.css
168 lines (140 loc) · 2.62 KB
/
style.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
* {
font-family: Arial, Helvetica, sans-serif;
}
/* Styling for the CV template container */
#Cvtemplate {
padding: 2px;
}
/* Row inside the CV template */
#Cvtemplate .row {
padding: 5px;
margin-right: 3px;
margin-left: 0px;
}
/* CV template layout */
.cv-template {
height: 100vh;
overflow-y: scroll;
display: block;
}
body {
padding: 2px;
color: black;
}
/* Form section of the CV */
.cv-form {
background-color: rgb(217, 217, 217);
height: 100vh;
overflow-y: scroll;
}
/* Footer section styling */
.footer {
background-color: #333;
color: white;
padding: 40px 20px;
text-align: center;
}
.footer h2 {
margin-bottom: 10px;
font-size: 1.5rem;
}
/* Hidden class to hide elements */
.hidden {
display: none;
}
/* Footer content styling */
.footer-content {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
}
/* Footer social links list */
.footer-social ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
}
.footer-social i {
margin-right: 5px;
}
.footer-follow {
margin-bottom: 20px;
}
.footer-follow p {
font-size: 1.2rem;
margin-bottom: 10px;
}
/* Follow icons list */
.follow-icons {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
gap: 15px;
}
/* Links for the follow icons */
.follow-icons li a {
font-size: 1.5rem;
color: white;
transition: color 0.3s ease;
}
/* Hover effect for follow icons */
.follow-icons li a:hover {
color: #00bfff;
}
.footer-bottom {
font-size: 14px;
margin-top: 20px;
}
.footer-bottom p {
margin: 5px 0;
}
/* Hidden class repetition (redundant) */
.hidden {
display: none;
}
/* Responsive design for screens smaller than 768px */
@media (max-width: 768px) {
.footer-content {
flex-direction: row;
justify-content: space-between;
text-align: left;
}
.footer-logo {
text-align: left;
}
.footer-social {
text-align: right;
}
.footer-follow {
margin-bottom: 40px;
}
}
/* Print-specific styling */
@media print {
#cv-template {
page-break-inside: avoid;
}
}
/* Attribute positioning */
.attribute {
position: absolute;
bottom: 10px;
}
/* Additional responsive design for screens smaller than 767px */
@media (max-width: 767px) {
.footer-content {
flex-direction: column;
}
.footer-logo, .footer-social {
margin-bottom: 10px;
}
.footer-logo {
margin-bottom: 20px;
}
}