-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
90 lines (73 loc) · 1.44 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
body {
margin: 0;
padding: 0;
}
.container {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: row;
}
.cell {
color: #2b61d4;
background-color: white;
padding-inline: 5px;
font-size: 0.8em;
font-weight: bold;
font-family: "JetBrains Mono", monospace;
border-inline: 2px solid black;
border-inline-width: 1px;
display: inline-flex;
justify-content: center;
}
.ui_interactions {
width: 25%;
height: 100vh;
background-color: cornflowerblue;
display: flex;
flex-direction: column;
}
.header {
width: 100%;
background-color: cornflowerblue;
display: flex;
justify-content: center;
}
.header > h1 {
color: black;
font-size: 2em;
font-family: "JetBrains Mono", monospace;
}
.settings_config {
width: 100%;
background-color: cornflowerblue;
display: flex;
justify-content: center;
}
.settings_config > button {
color: black;
cursor: pointer;
text-align: center;
font-weight: bold;
text-transform: uppercase;
background-color: #2b61d4;
position: relative;
padding: 15px 20px;
outline: none;
border: none;
border-radius:30px;
}
.array_container {
width: 70%;
height: 100vh;
background-color: black;
display: flex;
flex-direction: row;
}
.links {
width: 15%;
height: 100vh;
background-color: cornflowerblue;
display: flex;
flex-direction: column;
}