-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (72 loc) · 1.52 KB
/
style.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
/* :root { */
/* --fastrack-tile-size: 16px; */
/* } */
/* * { */
/* box-sizing: border-box; */
/* } */
/* body { */
/* background-color: #202b38; */
/* color: white; */
/* font-family: monospace; */
/* margin: 0; */
/* max-width: 100%; */
/* min-height: 100%; */
/* overflow: hidden; */
/* } */
/* .cursor { */
/* position: absolute; */
/* width: var(--fastrack-tile-size); */
/* height: var(--fastrack-tile-size); */
/* background-color: rgba(255, 255, 255, 0.7); */
/* } */
/* .piece { */
/* width: var(--fastrack-tile-size); */
/* height: var(--fastrack-tile-size); */
/* position: absolute; */
/* /\* background-color: red; *\/ */
/* text-align: center; */
/* font-size: var(--fastrack-tile-size); */
/* } */
:root {
--fastrack-grid-color: rgba(255, 255, 255, 0.4);
--fastrack-highlight-color: white;
}
* {
box-sizing: border-box;
}
body {
background-color: #202b38;
color: white;
font-family: monospace;
margin: 0;
padding: 1rem;
max-width: 100%;
}
section {
height: 800px;
}
textarea {
background-color: transparent;
border: 2px solid #3a608d;
border-radius: 8px;
width: 100%;
resize: vertical;
color: white;
line-height: 1.0;
margin-bottom: 1rem;
}
button {
background-color: rgb(0, 150, 20);
border: none;
border-radius: 8px;;
width: 6rem;
padding: 0.5rem;
color: white;
cursor: pointer;
}
.Pcolor {
color: blue;
}
.Scolor {
color: green;
}