1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 21:29:42 +02:00
documize/gui/app/styles/core/view/common.scss

69 lines
1 KiB
SCSS
Raw Normal View History

2017-11-22 17:27:09 +00:00
.modal-content {
border: none !important;
}
.empty-state {
2016-11-05 14:53:44 -07:00
text-align: center;
margin: 0 auto;
margin-top: 50px;
max-width: 500px;
padding: 30px;
@include border-radius(5px);
background-color: $color-off-white;
display: block;
opacity: 0.8;
2016-11-05 14:53:44 -07:00
> p {
font-size: 1.5rem;
line-height: 2.5rem;
2016-11-05 14:53:44 -07:00
color: $color-gray;
display: block;
2016-11-05 14:53:44 -07:00
}
> .material-icons {
font-size: 5rem;
color: $color-stroke;
2016-11-05 14:53:44 -07:00
}
}
2018-11-07 15:56:05 +00:00
.not-found {
text-align: center;
font-size: 2rem;
color: $color-gray;
margin: 5rem 0;
}
2018-11-24 18:39:43 +00:00
.theme-picker {
display : block;
margin-bottom: 10px;
> .theme {
height: 100px;
width: 250px;
text-align: center;
color: $color-white;
font-weight: 600;
font-size: 1.2rem;
display: inline-block;
position: relative;
margin: 0 20px 20px 0;
padding: 10px 0 0 0;
cursor: default;
border: 7px solid $color-gray-light;
@include border-radius(3px);
@include ease-in();
&:hover {
border: 7px solid $color-gray;
}
.tick {
text-align: center;
color: $color-white;
font-weight: 400;
font-size: 2rem;
}
}
}