SAND-framework/public/assets/html5-simple-date-input-polyfill-master/html5-simple-date-input-polyfill.scss
2021-06-16 11:35:03 +02:00

44 lines
603 B
SCSS

@mixin reset() {
background: #fff;
color: #000;
text-shadow: none;
height: auto;
width: auto;
padding: 0;
line-height: normal;
border: 0;
box-shadow: none;
border-radius: 0;
font-family: sans-serif;
font-size: 14px;
}
.calendar {
&, select, table, th, td {
@include reset();
}
position: absolute;
border: 1px solid #c0c0c0;
text-align: center;
select {
margin: 3px 5px;
border: 1px solid #c0c0c0;
}
th, td {
width: 14%;
padding: 4px;
text-align: center;
}
td {
cursor: pointer;
}
.selected {
font-weight: bold;
}
}