-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (61 loc) · 1.07 KB
/
style.css
File metadata and controls
72 lines (61 loc) · 1.07 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
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(to bottom, #a8a8a8 0%, #d5c6c6 100%);
}
#container {
display: flex;
align-items: center;
flex-direction: row;
width: 100vw;
height: 100%;
}
#pongCanvas {
display: block;
border-radius: 4px;
overflow: hidden;
margin-left: 100px;
max-height: 90vh;
aspect-ratio: 1;
}
.sidebar {
margin-left: 50px;
height: 100%;
margin-top: 20%;
font-family: monospace;
color: #172b36; font-family: monospace;
font-size: 16px;
flex-basis: 400px;
color: #172b36;
}
#made {
text-align: center;
line-height: 1.5;
margin-top: auto;
margin-bottom: 20px;
font-size: 10px;
}
#made a {
color: #172b36;
}
.counter {
display: flex;
flex-direction: column;
margin-top: 20px;
color: #172b36;
}
.controls {
margin-top: 20px;
}
.controls form {
display: flex;
gap: 5px;
flex-direction: column;
}