-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (75 loc) · 1.11 KB
/
style.css
File metadata and controls
90 lines (75 loc) · 1.11 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
html {
background-color: #222222;
font-family: 'Signika', sans-serif;
font-size: 1em;
}
body
{
display: flex;
flex-flow: row wrap;
justify-content: center;
/* max-width: 800px; */
padding: 1px 10px;
border: 2px solid #FAFAFA;
border-radius: 3px;
background-color: #000000;
}
.userInput
{
display: flex;
flex-flow: row wrap;
list-style-type: none;
padding-left: 0;
}
.userInput li
{
display: flex;
flex-flow: row wrap;
width: 55px;
height: 45px;
padding: 5px;
border: 1px solid #FAFAFA;
border-radius: 3px;
color: #FAFAFA;
letter-spacing: .09em;
background: #222222;
}
input[type="number" i] {
width: 100%;
}
.userInput a
{
margin: auto;
padding: 3px;
border: 1px solid #FAFAFA;
border-radius: 2px;
color: #FAFAFA;
text-decoration: none;
letter-spacing: .09em;
font-weight: bold;
background: #222277;
}
#newMaze {
background: #227722;
}
#newRnd
{
background: #ada312;
}
#delMaze
{
background: #772222;
}
.mazes
{
display: flex;
flex-flow: row wrap;
flex-basis: 100%;
list-style-type: none;
padding-left: 0;
}
.mazes li
{
margin: auto;
padding: 3px;
}