-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
133 lines (116 loc) · 2.05 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500;700&display=swap");
:root {
--var-primary: rgb(127, 70, 241);
}
* {
font-family: inherit;
}
body {
font-family: "Poppins", sans-serif;
width: 300px;
padding: 0 1rem;
background: #322744;
color: #fff;
background-color: #322744;
background-image: linear-gradient(326deg, #322744 0%, #8046f1 74%);
}
img {
width: 100%;
object-fit: contain;
}
h1 {
font-size: 1.25rem;
margin: 1rem 0 0;
}
h4 {
font-size: 1.15rem;
margin: 0.5rem 0 0.25rem;
}
p {
font-size: 0.95em;
margin: 0.5rem 0;
}
label {
display: block;
margin-bottom: 0.15rem;
}
input {
display: block;
padding: 0 0.8rem 0 2.25rem;
width: 100%;
border: 1px solid var(--var-primary);
position: relative;
margin-bottom: 0.5rem;
color: #111;
height: 2rem;
outline: none;
border: none;
}
button {
padding: 0.35rem 1rem;
border: none;
outline: none;
background: var(--var-primary);
color: #fff;
transition: 0.3s ease-in-out;
cursor: pointer;
margin: 1rem 0;
display: block;
width: 100%;
text-transform: uppercase;
font-size: 0.9rem;
margin: 1rem 0;
}
button:hover {
opacity: 0.8;
transition: 0.3s ease-in-out;
}
.applicant-title {
display: flex;
justify-content: space-between;
}
.applicant-title:not(:first-of-type) {
margin-top: 1rem;
}
button.remove {
background: rgb(193, 57, 57);
font-size: 0.7rem;
}
span.icon {
position: relative;
margin-bottom: 0.75rem;
display: block;
}
span.icon::before {
content: "";
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
z-index: 10;
background: #572cad;
height: 2rem;
display: flex;
justify-content: center;
align-items: center;
width: 1.75rem;
}
span.gbp::before {
content: "\00A3"; /* displays the pound sign */
}
span.percent::before {
content: "\0025";
}
span.year::before {
content: "\1F551";
}
a {
color: #fff;
text-decoration: none;
display: inline-block;
transition: 0.3s ease-in-out;
}
a:hover {
opacity: 0.8;
transition: 0.3s ease-in-out;
}