-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
91 lines (80 loc) · 1.57 KB
/
main.css
File metadata and controls
91 lines (80 loc) · 1.57 KB
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
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow-y: auto;
background-color: #fff;
}
#result{
height: fit-content;
margin-top: 20px;
}
select{
background-color: #fff;
border: #000 1px solid;
border-radius: 5px;
font-weight: bold;
}
canvas {
display: block;
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: -1;
pointer-events: none;
}
p, tr, div, li, body{
color: #000;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 3px;
}
.k-input{
width: 50px;
background-color: #fff;
color: #000;
border: #000 1px solid;
border-radius: 5px;
font-weight: bold;
}
#main-div {
position: relative;
margin: 50px auto;
background-color: rgba(255, 255, 255, 0.03);
border-radius: 10px;
padding: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
width: fit-content;
max-width: 90%;
text-align: center;
color: #000;
}
button {
background-color: #eee;
border: none;
padding: 5px;
font-size: 1rem;
width: 10em;
border-radius: 1rem;
color: lightcoral;
box-shadow: 0 0.4rem #dfd9d9;
cursor: pointer;
}
button:active {
color: white;
box-shadow: 0 0.2rem #dfd9d9;
transform: translateY(0.2rem);
}
button:hover:not(:disabled) {
background: lightcoral;
color: white;
text-shadow: 0 0.1rem #bcb4b4;
}
button:disabled {
cursor: auto;
color: grey;
}