-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
103 lines (86 loc) · 1.63 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
98
99
100
101
102
103
#box{
width: 75%;
min-width: 265px;
margin-left: auto;
margin-right: auto;
background-color: rgb(250, 250, 250);;
padding: 30px;
}
h1{
padding: 20px;
margin: 10px;
}
.blackbox{
text-align: center;
background-color: rgb(0, 0, 0);
border-radius: 20px;
}
h2{
text-align: center;
}
p{
text-align: center;
}
.container {
position: relative;
text-align: center;
}
body {
font-family: monospace;
background: linear-gradient(76deg, rgb(255, 255, 255) 0%, rgb(245, 255, 249) 100%);
filter: drop-shadow(0 0 2px rgba(50, 50, 0, 0.5));
padding: 5px;
}
.flex {
display: flex;
justify-content: center;
margin-top: 60px;
flex-wrap : wrap
}
.line-height {
line-height: 2.5;
}
.btn {
cursor: pointer;
height: 40px;
background: rgb(255, 127, 7);
border-radius: 5px;
border: none;
color: white;
font-family: monospace;
font-size: 14px;
margin-top: 15px;
margin-bottom: 15px;
margin-left: auto;
margin-right: auto;
transition: all .2s ease-in-out;
}
button:hover {
background-color: rgb(255, 29, 29);
cursor: pointer;
transform: scale(1.1);
}
#canvasContainer {
touch-action: none;
}
#transferContainer{
margin-top: 80px;
}
.inputCanv {
border: 1px solid rgb(0, 0, 0);
box-shadow: 0 0 10px black;
}
.inputCanv:hover {
cursor: url('./images/cursor.png'), default;
}
.outputCanv {
border: 1px solid rgb(0, 0, 0);
box-shadow: 0 0 10px black;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -110%);
font-size: 30px;
}