-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (65 loc) · 1.18 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
:root {
--backgroundColor: #0A101D;
--borderColor: #A3C5C0;
}
* {
text-align: center;
}
body {
background-color: var(--backgroundColor);
color: var(--borderColor);
font-family: sans-serif;
}
table {
margin-left: auto;
margin-right: auto;
width: 560px;
height: 560px;
border-collapse: collapse;
border-spacing: 1px;
}
td {
padding: 0;
border: solid var(--borderColor) 2px;
vertical-align: middle;
}
.box-oline-top {
border-top: solid var(--borderColor) 4px;
}
.box-oline-bottom {
border-bottom: solid var(--borderColor) 4px;
}
.box-oline-left {
border-left: solid var(--borderColor) 4px;
}
.box-oline-right {
border-right: solid var(--borderColor) 4px;
}
input {
background: #1A202D;
color: white;
height: 100%;
width: 100%;
padding: inherit;
border: 0;
font-size: 25px;
vertical-align: middle;
resize: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
button {
background-color: var(--borderColor);
color: var(--backgroundColor);
border: 0;
height: 25px;
width: 80.55px;
border-radius: 50px;
}
button:hover {
background-color: #D3F5F0;
cursor: pointer;
}