-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
102 lines (93 loc) · 1.69 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
91
92
93
94
95
96
97
98
99
100
101
102
body {
font-family: Arial, Helvetica, sans-serif;
}
.container {
text-align: center;
margin: auto;
}
canvas {
background-color: #1e1f26;
border: 0.75px solid black;
/* border-left: 0.25px solid #1e1f26;
border-bottom: 0.25px solid #1e1f26 */
}
table {
margin: auto;
margin-top: 20px;
margin-bottom: 20px;
border: 1px solid black;
border-spacing: 0px;
}
tr {
border: 1px solid black;
}
td {
border: 1px solid black;
}
.controls {
text-align: left;
padding-left: 50px;
}
.controls button {
margin-top: 10px;
margin-left: 10px;
border: none;
background: none;
height: 35px;
border: 1px solid #1e1f26;
border-radius: 5px;
padding: 10px;
}
.controls .selector {
margin-top: 10px;
margin-left: 10px;
border: none;
background: none;
height: 35px;
border: 1px solid #1e1f26;
border-radius: 5px;
padding: 10px;
width: 150px;
display: inline-flex;
flex-direction: column;
align-items: center;
}
.controls button:hover {
background: black;
color: white;
}
a {
margin-top: 10px;
margin-left: 10px;
background: none;
border: 1px solid #1e1f26;
padding: 10px;
border-radius: 5px;
}
.footer {
display: flex;
padding-left: 50px;
padding-right: 50px;
justify-content: space-between;
color: white;
background-color: #1e1f26;
padding: 20px;
border-radius: 5px;
}
.footer a {
border: 1px solid white;
color: white;
text-decoration: none;
}
input {
border: none;
background: none;
}
input:focus {
border: none;
border-radius: 0;
outline: none;
}
controls .astar:hover {
background-color: greenyellow;
}