38 lines
548 B
SCSS
38 lines
548 B
SCSS
|
|
.flex-container {
|
||
|
|
padding: 0;
|
||
|
|
margin: 0;
|
||
|
|
list-style: none;
|
||
|
|
|
||
|
|
-ms-box-orient: horizontal;
|
||
|
|
display: -webkit-box;
|
||
|
|
display: -moz-box;
|
||
|
|
display: -ms-flexbox;
|
||
|
|
display: -moz-flex;
|
||
|
|
display: -webkit-flex;
|
||
|
|
display: flex;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
#appsingletodo {
|
||
|
|
color: white;
|
||
|
|
font-size: 1.1rem;
|
||
|
|
display: flex;
|
||
|
|
margin: 2px;
|
||
|
|
padding: 3px;
|
||
|
|
border: 2px;
|
||
|
|
background-color: #9db6ff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mycols{
|
||
|
|
padding: 2px;
|
||
|
|
margin: 1px;
|
||
|
|
border-color: #8a8484;
|
||
|
|
border-style: outset;
|
||
|
|
/* background-color: green; */
|
||
|
|
}
|
||
|
|
|
||
|
|
.mybtn{
|
||
|
|
width: 18px;
|
||
|
|
height: 18px;
|
||
|
|
}
|