-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
135 lines (111 loc) · 2.17 KB
/
App.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
* {
font-family: cursive;
}
.appContainer {
justify-content: center;
align-items: center;
display: flex;
text-align: center;
flex-direction: column;
border: 2px solid black;
padding: 15px;
margin: 5%;
}
.appTitle {
text-align: center;
}
.bioContainer {
}
.headerContainer {
}
.sectionHeaders {
}
.formLabels {
}
.formInputs {
}
#experienceFormContainer,
#generalInfoContainer,
#educationFormContainer,
#skillsFormContainer {
background-color: white;
box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 5px 8px 0 rgba(0, 0, 0, 0.14),
0 1px 14px 0 rgba(0, 0, 0, 0.12);
margin: 15%;
}
/* Form Content */
.experienceFormContent,
.educationFormContent,
.skillsFormContent {
width: 100%;
padding: 4% 5% 2% 5%;
border: 3px solid #e3e3e3;
}
/* Forms */
#experienceForm,
#educationForm,
#skillsForm {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
}
/* Buttons Style */
.editButtons {
margin: 2%;
width: 20%;
min-width: 40px;
max-width: 80px;
border-radius: 12px;
background-color: white;
border: 2px #5068a9 solid;
color: #5068a9;
transition: 350ms;
}
.editButtons:hover {
background-color: #5068a9;
color: white;
border: 2px #303f68 solid;
cursor: pointer;
}
.saveButtons {
margin: 2%;
width: 20%;
min-width: 60px;
max-width: 100px;
height: 24px;
border-radius: 12px;
background-color: white;
border: 2px #689f38 solid;
color: #689f38;
transition: 350ms;
}
.saveButtons:hover {
background-color: #689f38;
border: 2px #304919 solid;
color: white;
cursor: pointer;
}
.deleteButtonContainer {
text-align: center;
}
.deleteButtons {
background-color: white;
color: #d45a5a;
border: 2px #d45a5a solid;
width: 10%;
max-width: 50px;
height: 1.5rem;
text-align: center;
border-radius: 15px;
transition: 350ms;
}
.deleteButtons:hover {
background-color: #d45a5a;
border: 2px #6d2f2f solid;
color: white;
cursor: pointer;
}
.addAndSaveButtons {
}