-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (78 loc) · 1.52 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
/* Basic layout */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #f0f0f0;
}
/* Form container styling */
.form-container {
width: 40%;
padding: 20px;
background: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 10px;
transition: transform 0.5s ease;
margin-right: 20px;
}
/* Resume display styling */
.resume-display {
width: 40%;
padding: 20px;
background: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 10px;
display: none;
}
.resume-display h2 {
font-size: 24px;
text-align: left;
}
.resume-display h3 {
font-size: 20px;
margin-bottom: 10px;
text-decoration: underline;
}
.resume-display ul {
list-style-type: square;
margin-left: 20px;
}
/* Input fields */
input[type="text"], input[type="email"] {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
/* Button styling */
button {
padding: 10px 20px;
background: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
margin: 10px 0;
}
button:hover {
background: #45a049;
}
/* Animations */
.form-container {
border: 2px solid #4CAF50;
animation: borderAnimation 1s infinite alternate;
}
@keyframes borderAnimation {
0% {
border-color: #4CAF50;
}
100% {
border-color: #45a049;
}
}