-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrobo.css
53 lines (46 loc) · 845 Bytes
/
robo.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
body {
display: grid;
grid-template-columns: 50% 50%;
}
#code {
width: 75%;
min-height: 200px;
}
#cells {
width: fit-content;
display: grid;
grid-template-columns: auto auto auto auto auto;
background-color: black;
grid-gap: 4px;
}
#preview_panel {
padding: 4px;
background-color: black;
width: fit-content;
}
.header-cell {
background-color: white;
padding: 4px;
}
.cell {
width: 80px;
height: 80px;
background-color: white;
background-repeat: no-repeat;
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip-text {
visibility: hidden;
background-color: white;
color: black;
padding: 5px;
border-radius: 6px;
border-width: 1px;
border-color: black;
border-style: solid;
position: absolute;
z-index: 1;
}