Spaces:
Running
Running
hyzhang00
commited on
Commit
·
71c3325
1
Parent(s):
46d8462
update on code
Browse files- styles.css +74 -0
styles.css
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#warning {background-color: #FFCCCB}
|
| 2 |
+
.tools_button {
|
| 3 |
+
display: flex;
|
| 4 |
+
flex-direction: column;
|
| 5 |
+
align-items: center;
|
| 6 |
+
justify-content: center;
|
| 7 |
+
background: white;
|
| 8 |
+
border: none !important;
|
| 9 |
+
box-shadow: none !important;
|
| 10 |
+
text-align: center;
|
| 11 |
+
color: black;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
.tools_button_clicked {
|
| 15 |
+
display: flex;
|
| 16 |
+
flex-direction: column;
|
| 17 |
+
align-items: center;
|
| 18 |
+
justify-content: center;
|
| 19 |
+
background: white;
|
| 20 |
+
border: none !important;
|
| 21 |
+
box-shadow: none !important;
|
| 22 |
+
text-align: center;
|
| 23 |
+
color: rgb(18,150,219);
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
.tools_button_add {
|
| 27 |
+
display: flex;
|
| 28 |
+
flex-direction: column;
|
| 29 |
+
align-items: center;
|
| 30 |
+
justify-content: center;
|
| 31 |
+
background: white;
|
| 32 |
+
border: none !important;
|
| 33 |
+
box-shadow: none !important;
|
| 34 |
+
text-align: center;
|
| 35 |
+
color: rgb(18,150,219);
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
.info_btn {
|
| 39 |
+
background: rgb(245, 245, 245) !important;
|
| 40 |
+
border: none !important;
|
| 41 |
+
box-shadow: none !important;
|
| 42 |
+
font-size: 15px !important;
|
| 43 |
+
min-width: 6rem !important;
|
| 44 |
+
max-width: 10rem !important;
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
.info_btn_interact {
|
| 48 |
+
background: rgb(217, 217, 217) !important;
|
| 49 |
+
box-shadow: none !important;
|
| 50 |
+
font-size: 15px !important;
|
| 51 |
+
min-width: 6rem !important;
|
| 52 |
+
max-width: 10rem !important;
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
.function_button {
|
| 56 |
+
background: rgb(227, 226, 226) !important;
|
| 57 |
+
border: none !important;
|
| 58 |
+
box-shadow: none !important;
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
+
.function_button_rec {
|
| 62 |
+
background: rgb(189, 189, 189) !important;
|
| 63 |
+
border: none !important;
|
| 64 |
+
box-shadow: none !important;
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
.small_button {
|
| 68 |
+
font-size: 12px !important;
|
| 69 |
+
padding: 2px 8px !important;
|
| 70 |
+
min-width: 60px !important;
|
| 71 |
+
height: 30px !important;
|
| 72 |
+
}
|
| 73 |
+
|
| 74 |
+
#tool_box {max-width: 50px}
|