1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 06:32:34 +01:00
flox/client/resources/sass/_base.scss
Viktor Geringer 23ecc26978
Feature/reminder (#110)
* move refresh in tab, add job for refresh, add new setting

* check for setting in kernel

* prepare frontend and database for reminders

* prepare mail settings

* add timezone config

* add security-advisories package

* set back APP_URL

* send daily reminder

* update headlines for daily reminder

* fix postgres id sequence on import

* some basic responsive behaviour

* add weekly reminder

* fix footer css

* update readme

* change loading logo
2018-12-27 21:35:41 +01:00

60 lines
881 B
SCSS
Vendored

* {
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
}
body {
overflow-y: scroll;
background: #fff;
&.dark {
background: #1c1c1c;
}
&.open-modal {
overflow: hidden;
}
}
html {
-webkit-text-size-adjust: 100%;
}
input {
-webkit-appearance: none !important;
}
.wrap,
.wrap-content,
.content-submenu {
lost-center: 1300px 20px;
width: 100%;
}
.wrap-content,
.content-submenu {
@include media(1) { lost-center: 1120px 20px; }
@include media(2) { lost-center: 960px 20px; }
@include media(3) { lost-center: 800px 20px; }
@include media(4) { lost-center: 620px 20px; }
@include media(6) { lost-center: 290px 20px; }
}
input,
a {
outline: 0
}
::selection {
background: rgba($main1, .99);
color: #fff;
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: .3; }
100% { opacity: 1; }
}