-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
126 lines (107 loc) · 1.73 KB
/
Copy pathmain.css
File metadata and controls
126 lines (107 loc) · 1.73 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#github {
position: absolute;
top: 30px;
left: 30px;
display: flex;
align-items: center;
}
#github > * {
margin-right: 20px;
text-transform: uppercase;
color: #6a9ae8;
font-weight: bolder;
letter-spacing: 2px;
font-size: 12px;
text-decoration: none;
}
#github *:hover {
text-decoration: underline;
}
canvas {
width: 45%;
padding: 5px;
background-color: black;
cursor: pointer;
}
body {
max-width: 960px;
margin: 0 auto;
font-family: 'Roboto', sans-serif;
padding-bottom: 200px;
padding-left: 10px;
padding-right: 20px;
padding-top: 100px;
}
p {
font-size: 20px;
width: 536px;
}
.enclosure {
display: flex;
justify-content: flex-end;
flex-wrap: wrap;
padding: 30px;
width: 70%;
margin: 0 auto;
}
.canvas-box-wrapper {
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
margin-bottom: 25 0px;
margin-top: 100px;
}
.canvas-wrapper {
margin-left: 30px;
margin-top: 20px;
width: 100%;
}
.canvas-wrapper canvas {
width: 100%;
}
.maze-double {
display: flex;
flex-direction: column;
}
.maze-double canvas {
width: 95%;
}
.maze-horiz-double {
display: flex;
flex-direction: row;
justify-content: space-around;
}
.maze-horiz-double canvas {
width: 40%;
height: 40%;
}
.no-top {
margin-top: 0;
}
.no-left {
margin-left: 0;
}
.caption {
font-style: italic;
font-size: 12px;
width: auto;
animation: fadeInDown .5s linear;
padding: 10px 0;
margin: 0;
}
.final-recap {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.final-recap .canvas-wrapper {
width: 30%;
}
.final-recap canvas {
width: 100%;
}
@keyframes fadeInDown {
from { opacity: 0; padding: 0;}
to { opacity: 1; }
}