-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
121 lines (118 loc) · 2.25 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body {
display: flex;
flex-wrap: wrap;
margin: 0;
padding: 0;
background-color: #008507db;
font-family: "Abel", sans-serif;
}
canvas {
border-radius: 0.25em;
/* #f9fbfd Outside*/
/* #c7c7c7 Border*/
/* #fff Document*/
}
/* width */
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background-color: #24962a;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #989898;
border-radius: 0.5em;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #232323;
}
#floater {
position: fixed;
bottom: 0.2em;
left: 0.2em;
padding: 0.2em;
border-radius: 0.2em;
background-color: rgba(144, 144, 144, 0.469);
transition-duration: 500ms;
transition-timing-function: cubic-bezier(1,0,0,1);
pointer-events: initial;
user-select: none;
transform: translateX(0px);
}
#fieldElementModel {
position: fixed;
}
#infoPanel {
background-color: aqua;
border-radius: 1em;
width: 90%;
padding: 0.5em;
margin: 0.5em;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.infoPanelItem {
background-color: blueviolet;
display: flex;
flex-direction: column;
width: fit-content;
padding: 0.5em;
border-radius: 0.5em;
margin: 0.5em;
}
#canvasContainer {
width: 100%;
display: flex;
justify-content: center;
align-content: center;
}
#ribbon {
width: 100%;
background-color: white;
padding-left: 0.5em;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
margin-bottom: 0.25em;
}
.ribbonGroup {
width: fit-content;
display: flex;
flex-direction: row;
}
.ribbonItem {
background-color: transparent;
border: none;
padding-top: 0.5em;
padding-bottom: 0.5em;
margin: 0.25em;
border-radius: 0.5em;
}
.ribbonItem:hover {
background-color: #f4f4f4;
}
.ribbonItem:active {
background-color: #3454D1;
color: antiquewhite;
}
#settings {
margin: 0.25em;
padding: 0.3em;
border-radius: 1em;
background-color: #989898;
min-width: 90%;
display: flex;
flex-wrap: nowrap;
}
#settings > input {
border-radius: 1em;
border: white solid 2px;
margin-right: 0.5em;
}
#settings > label {
margin-left: 0.5em;
}