VersaWhiteboard/public/css/main.css

63 lines
1.3 KiB
CSS
Raw Normal View History

2018-02-08 20:04:13 +01:00
.btn-group button {
2018-02-08 22:26:19 +01:00
background-color: #808080; /* Green background */
border: 1px solid #636060; /* Green border */
2018-02-08 20:04:13 +01:00
color: black; /* White text */
padding: 11px 14px; /* Some padding */
cursor: pointer; /* Pointer/hand icon */
float: left; /* Float the buttons side by side */
font-size: 1.2em;
}
.btn-group button:not(:last-child) {
border-right: none; /* Prevent double borders */
}
/* Clear floats (clearfix hack) */
.btn-group:after {
content: "";
clear: both;
display: table;
}
/* Add a background color on hover */
.btn-group button:hover {
2018-02-08 22:26:19 +01:00
background-color: #a5a3a3;
}
button {
outline-width: 0;
2018-02-08 20:04:13 +01:00
}
.btn-group {
2018-02-08 22:26:19 +01:00
background-color: #808080;
2018-02-08 20:04:13 +01:00
margin-left: 5px;
float: left;
position: relative;
}
.whiteboardTool.active {
2018-02-08 22:26:19 +01:00
background: #bfbfbf;
2018-02-08 20:04:13 +01:00
}
#whiteboardThicknessSlider {
-webkit-appearance: none;
width: 100%;
height: 10px;
border-radius: 3px;
background: transparent;
outline: none;
opacity: 1;
-webkit-transition: opacity .15s ease-in-out;
transition: opacity .15s ease-in-out;
2019-01-11 15:58:58 +01:00
}
.textBox.active {
border: 1px dashed gray;
2019-01-14 14:11:21 +01:00
}
2019-02-05 13:04:26 +01:00
.textBox>.removeIcon,.textBox>.moveIcon {
2019-01-14 14:11:21 +01:00
display:none;
}
2019-02-05 13:04:26 +01:00
.textBox.active>.removeIcon,.textBox.active>.moveIcon {
2019-01-14 14:11:21 +01:00
display:block;
2018-02-08 20:04:13 +01:00
}