-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
90 lines (80 loc) · 1.62 KB
/
styles.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
.inputContainer {
background-color: #5c5c5c;
width: 70%;
padding: 5px;
border-radius: 10px;
display: flex;
position: absolute;
top: 20%;
left: 50%;
transform: translate(-50%, -50%);
}
#amount {
font-size: 1.1rem;
background: none;
border: none;
outline: none;
padding: none;
color: white;
width: 100%;
}
/* from https://coolors.co */
body {
background: hsla(332, 53%, 82%, 1);
background: linear-gradient(
135deg,
hsla(332, 53%, 82%, 1) 0%,
hsla(176, 57%, 89%, 1) 100%
);
background: -moz-linear-gradient(
135deg,
hsla(332, 53%, 82%, 1) 0%,
hsla(176, 57%, 89%, 1) 100%
);
background: -webkit-linear-gradient(
135deg,
hsla(332, 53%, 82%, 1) 0%,
hsla(176, 57%, 89%, 1) 100%
);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#E9B7CE", endColorstr="#D3F3F1", GradientType=1 );
overflow: hidden;
}
.mainContainer {
background: #353535;
height: 85%;
width: 30%;
position: absolute;
top: 100%;
left: 50%;
transform: translate(-50%, -95%);
border-radius: 25px;
font-family: "Lato", Avenir Next, Helvetica, sans-serif;
color: white;
}
#button {
border: none;
outline: none;
padding: 10px;
background-color: white;
width: 15%;
text-align: center;
position: absolute;
top: 30%;
left: 40%;
color: black;
border-radius: 5px;
font-size: 1.2vw;
}
.title {
position: absolute;
top: 12%;
left: 14%;
font-size: 1.5vw;
}
#output {
position: absolute;
top: 45%;
font-size: 2vw;
width: 100%;
text-align: center;
}