This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
101 lines (101 loc) · 1.58 KB
/
main.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
body{
margin: 0;
overflow-x: hidden;
}
*:focus{
outline: solid 1px blueviolet;
}
html{
font-size: 18px;
}
#mode-select{
user-select: none;
}
#mode-select, #game{
margin: .5% 0;
text-align: center;
width: 100vw;
}
#start-game{
height: 2.4rem;
width: 5.8rem;
}
#mode-select *{
font-size: .95rem;
}
#inputs{
margin: .5% 0;
}
#inputs *{
font-size: 3rem;
height: 3.6rem;
width: 1.8rem;
}
#inputs{
user-select: none;
}
#root{
width: 100vw;
height: 100vh;
max-width: 100vw;
max-height: 100vh;
display: flex;
flex-direction: column;
}
#errors{
color: crimson;
}
#output{
margin-top: 2%;
resize: none;
width: 50vw;
height: 50vh;
word-wrap: normal;
word-break: break-all;
overflow-x: hidden;
overflow-y: scroll;
font-size: 1rem;
-webkit-user-drag: none;
}
#oneoutput, #errors{
text-align: initial;
user-select: none;
}
#panel-container{
display: flex;
flex-direction: row;
max-width: 100vw;
justify-content: center;
}
#panel-container > *{
margin: 0 1%;
}
#right{
display: flex;
flex-direction: column;
justify-content: end;
align-content: flex-end;
}
#history{
height: 100%;
text-align: end;
user-select: none;
}
#about, #about *{
user-select: none;
text-align: center;
word-wrap: normal;
word-break: break-all;
}
@media screen and (max-width: 1000px){
#output{
width: 70vw;
height: 55vh;
}
}
@media screen and (max-width: 600px){
#output{
width: 90vw;
height: 60vh;
}
}