-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.scss
53 lines (52 loc) · 1.07 KB
/
index.scss
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
body {
margin: 0;
padding: 0;
background:linear-gradient(47deg,blue,red);
display: flex;
justify-content: center;
align-items: center;
}
*{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
letter-spacing: 2px;
text-transform: uppercase;
margin-top: 5px;
margin-bottom: 5px;
}
h1,h5{
color: white;
}
.wrapper{
background: rgba($color: white, $alpha: 0.2);
padding:20px;
display: flex;
justify-content: center;
flex-direction: column;
backdrop-filter: blur(10px);
}
input[type=text]{
padding: 10px;
color: #222;
width: 100%;
}
input[type=range]{
width: 100%;
}
.field{
margin-top: 10px;
margin-bottom: 10px;
}
label{
color:white;
}
button{
padding: 10px;
font-weight: 600;
cursor: pointer;
background: transparent;
color: white;
border-color: white;
}
#aInvested,#finalAmount{
font-size: 18px;
}