-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (86 loc) · 1.74 KB
/
style.css
File metadata and controls
101 lines (86 loc) · 1.74 KB
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
* {
font-family: "Poppins", sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.card {
width: 350px;
background-color: white;
background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
background-size: 16px 16px;
}
.card-header {
background-color: #1a1a1a;
color: white;
padding: 12px 16px;
text-align: center;
}
.card-title {
margin: 0;
font-size: 22px;
}
.card-subwrapper {
padding: 20px 15px;
}
.input-group {
margin-bottom: 5px;
}
label {
display: block;
margin-bottom: 4px;
font-size: 14px;
color: #1a1a1a;
font-weight: 600;
}
#original-filename {
font-size: 14px;
}
#new-filename {
font-size: 14px;
font-weight: 500;
color: #111827;
margin: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
input[type="text"] {
width: 100%;
padding: 8px;
font-size: 14px;
border: 1px solid #d1d5db;
border-radius: 4px;
background-color: #f9fafb;
}
.card-footer {
padding: 10px 0px;
display: flex;
justify-content: space-around;
}
button {
padding: 8px 16px;
font-size: 14px;
border-radius: 4px;
cursor: pointer;
width: 48%;
}
#resume-download {
background-color: #1a1a1a;
border-radius: 5px;
color: white;
border: none;
}
#resume-download:hover {
background-color: #262626;
transition: all 0.2s ease-in-out;
}
#skip-rename {
background-color: white;
border: 1px solid #d2d2d2;
}
#skip-rename:hover {
background-color: rgba(245, 245, 245, 0.984);
transition: all 0.2s ease-in-out;
}