-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
101 lines (83 loc) · 1.66 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
body {
background-color: #e2e2e2;
}
#cv-form {
width: 93%;
margin: auto;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#cv-form h2 {
text-align: center;
margin-bottom: 20px;
}
#cv-form label {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
}
#cv-form input,
#cv-form textarea {
width: 100%;
padding: 10px;
border-radius: 5px;
border: none;
margin-bottom: 20px;
box-sizing: border-box;
}
#cv-form textarea {
resize: none;
}
#cv-form button {
background-color: #2c3e50;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
margin-bottom: 20px;
}
#cv-form button:hover {
background-color: #34495e;
}
#cv-template {
width: 80%;
margin: auto;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
display:none;
}
#cv-template h1,
#cv-template h2 {
text-align: center;
margin-bottom: 20px;
}
#cv-template h3 {
margin-bottom: 10px;
}
#cv-template p {
margin-bottom: 20px;
}
#cv-template ul {
margin-bottom: 20px;
}
#cv-template li {
margin-bottom: 5px;
}
#cv-template img {
display: block;
margin: auto;
margin-bottom: 20px;
max-width: 100%;
border-radius: 5px;
}
.myimg {
border-radius: 50%;
width: 200px;
}
.background {
background-color: rgba(28, 71, 63, 0.088);
}