-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
113 lines (95 loc) · 1.76 KB
/
styles.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
.btn {
border: 2px solid black;
background-color: white;
color: black;
padding: 5px 10px;
font-size: 16px;
cursor: pointer;
border-radius: 4px;
}
/* Green */
.success {
border-color: #4CAF50;
color: green;
}
.success:hover {
background-color: #4CAF50;
color: white;
}
/* Blue */
.info {
border-color: #2196F3;
color: dodgerblue
}
.info:hover {
background: #2196F3;
color: white;
}
/* Orange */
.warning {
border-color: #ff9800;
color: orange;
}
.warning:hover {
background: #ff9800;
color: white;
}
input[type=text], input[type=password], input[type=number]{
width: 40%;
padding: 8px;
margin: 5px 0;
display: inline-block;
border: none;
background: #f1f1f1;
}
input[type=text]:focus, input[type=password]:focus {
background-color: #ddd;
outline: none;
}
body {
margin: 0;
}
.canvas3js {
width: 100%;
height: 100vh;
}
.canvas3d {
position: relative;
width: 60%;
}
.canvasCrop {
width: 40%;
position: relative;
height: 50vh;
}
.container {
display: flex;
}
.right-corner {
position: absolute;
top: 20px;
right: 20px;
z-index: 100;
}
.image_lib {
max-height: 50vh;
overflow-y: auto;
margin: 0 5px;
}
.image_lib_item {
height: 120px;
width: 120px;
object-fit: contain;
margin: 10px;
padding: 10px;
border: 1px solid royalblue;
border-radius: 4px;
}
.image_lib_item_selected {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
border-width: 3px;
}
img {
max-width: 100%;
/* This rule is very important, please do not ignore this! */
}