-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
97 lines (88 loc) · 1.99 KB
/
style.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
/* body {
font-family: sans-serif;
} */
.container {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
padding-bottom: 20px;
padding-left: 30px;
padding-right: 30px;
background-color: rgb(143, 143, 143);
width: 500px;
height: 600px;
}
.title-app {
font-size: 28px;
color: white;
font-family: "JetBrains Mono", monospace;
background-image: radial-gradient(
100% 100% at 100% 0,
#5adaff 0,
#5468ff 100%
);
margin-bottom: 60px;
padding-bottom: 30px;
}
.parameters {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 30px;
}
.button-field {
display: flex;
justify-content: flex-end;
}
#currency-field {
text-align: right;
}
.button-app {
align-items: center;
appearance: none;
background-image: radial-gradient(
100% 100% at 100% 0,
#5adaff 0,
#5468ff 100%
);
border: 0;
border-radius: 6px;
box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,
rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgba(58, 65, 111, 0.5) 0 -3px 0 inset;
box-sizing: border-box;
color: #fff;
cursor: pointer;
font-family: "JetBrains Mono", monospace;
height: 30px;
line-height: 1;
list-style: none;
overflow: hidden;
padding-left: 32px;
padding-right: 32px;
/* position: relative; */
text-align: left;
text-decoration: none;
/* transition: box-shadow .15s,transform .15s; */
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
white-space: nowrap;
will-change: box-shadow, transform;
font-size: 18px;
}
.button-app:focus {
box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px,
rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
}
.button-app:hover {
box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px,
rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
transform: translateY(-2px);
}
.button-app:active {
box-shadow: #3c4fe0 0 3px 7px inset;
transform: translateY(2px);
}