-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew.css
97 lines (83 loc) · 1.67 KB
/
new.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
body {
font-family: 'Arial', sans-serif;
background-color: #000000;
color: #fff;
margin: 20px;
margin-bottom: 60px; /* Adjust the value to leave space for the fixed button */
}
.container {
display: flex;
justify-content: space-between;
}
.skills {
display: flex;
width: 100%;
margin-right: 20px;
}
.panel {
margin-right: 20px;
background-color: #333;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2, label {
color: #fff;
}
.skillImage {
margin-right: 10px;
}
#downloadButton {
position: fixed;
bottom: 20px; /* Adjust the value as needed */
left: 50%;
transform: translateX(-50%);
background-color: #4caf50;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
z-index: 1000; /* Ensure it's above other elements if needed */
}
#downloadButton:hover {
background-color: #45a049;
}
/* Dynamic styling for checkboxes */
input[type="checkbox"] {
display: none;
}
input[type="checkbox"] + label {
cursor: pointer;
padding: 5px;
padding-right: 30px;
border-radius: 4px;
transition: background-color 0.3s;
}
input[type="checkbox"]:checked + label {
background-color: #555;
}
.column {
width: 26%;
display: inline-block;
vertical-align: top;
margin-right: 20px;
}
@media (max-width: 768px) {
.column {
width: 100%;
display: block;
margin-bottom: 20px;
}
}
textarea, #preview {
width: 45%;
height: 300px;
padding: 10px;
box-sizing: border-box;
}
#preview {
border: 1px solid #ccc;
overflow-y: auto;
}