-
Notifications
You must be signed in to change notification settings - Fork 24
/
style.css
78 lines (71 loc) · 1.27 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
p {
font-size: 1.1rem;
}
mark {
color: #e83e8c;
word-break: break-word;
}
.block {
position: relative;
padding: 1rem;
border: solid #f7f7f9;
/*background: #fafafa;*/
}
.output {
display: block;
height: 6.7em;
width: 100%;
/*padding: 0.6rem;*/
border: 1px solid transparent;
}
pre {
background: #fafafa;
}
.filler {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* Visualization component
------------------------- */
.visualization { height: 100%; }
/* Layout */
.visualization__color-list {
text-align: left;
}
.visualization__color-picker {
position: absolute;
left: 25px;
}
.visualization__rectangle {
height: 200px;
width: 200px;
margin: 60px auto;
}
.visualization__style-list {
padding: 1rem;
width: 100%;
display: flex;
flex-flow: wrap;
justify-content: center;
}
/* Elements */
.visualization__color {
cursor: pointer;
display: inline-block;
height: 25px;
width: 25px;
background: transparent;
border: 2px solid #f7f7f9;
}
.visualization__color:hover, .visualization__color.is-active {
border: 2px solid #80bdff;
}
.visualization__style {
padding: 1rem;
margin: 0 10px 1rem;
background: unset;
border: none;
}