Mirv-Startpage/assets/css/style.css

524 lines
9.5 KiB
CSS
Raw Normal View History

/*
* Evening Startpage
* Inspired by https://github.com/jeroenpardon/sui
* You can find it at https://github.com/TB-96/Evening-Startpage
* Made by TB-96 2020
*
*/
2020-11-02 15:05:53 +03:00
/* Nord theme */
:root {
2020-11-02 15:05:53 +03:00
--color-theme: #5E81AC;
--bg-primary: #2E3440;
--bg-secondary: rgba(59,66,82,.5);
--bg-hover: rgba(41,120,173,.5);
--color-primary: #D8DEE9;
2020-11-02 15:05:53 +03:00
--color-secondary: #81A1C1;
--color-white: #ECEFF4;
--color-success: #A3BE8C;
--color-warning: #D08770;
--color-danger: #BF616A;
--padding: 1rem;
--rounded: 0.25rem;
--shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.12)
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-size: 15px;
transition: opacity .3s;
font-family: "Open Sans";
}
2020-11-02 15:05:53 +03:00
html, body {
min-height: 100%;
}
2020-11-02 15:05:53 +03:00
body {
2020-11-02 15:05:53 +03:00
color: var(--color-primary);
background: var(--bg-primary) no-repeat fixed center;
background-size: cover;
height: 100%;
margin: 0;
}
::-webkit-scrollbar {
2020-11-02 15:05:53 +03:00
width: 0px;
height: 5px;
}
::-webkit-scrollbar-track {
background: #4e4e4e;
}
::-webkit-scrollbar-thumb {
background: var(--bg-secondary);
}
2020-11-02 15:05:53 +03:00
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
color: var(--color-primary);
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: var(--color-primary);
opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
color: var(--color-primary);
opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: var(--color-primary);
}
::-ms-input-placeholder { /* Microsoft Edge */
color: var(--color-primary);
}
::placeholder { /* Most modern browsers support this now. */
color: var(--color-primary);
}
a, a:visited {
color: var(--color-secondary);
2020-11-02 15:05:53 +03:00
text-decoration: none;
}
a:hover, a:focus {
2020-11-02 15:05:53 +03:00
text-decoration: underline;
cursor: pointer;
webkit-text-decoration-color: var(--color-text-acc);
webkit-text-decoration-skip: true;
}
2020-11-02 15:05:53 +03:00
/* ANIMATION */
#container {
-webkit-animation: fadein .3s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein .3s; /* Firefox < 16 */
-ms-animation: fadein .3s; /* Internet Explorer */
-o-animation: fadein .3s; /* Opera < 12.1 */
animation: fadein .3s;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
#container {
2020-11-02 15:05:53 +03:00
margin: 0 auto;
padding-top: 1em;
width: 70%;
}
2020-11-02 15:05:53 +03:00
#apps, #links {
padding: var(--padding);
margin: 1em 0em;
background-color: rgba(19, 19, 19, 0.3);
border-radius: var(--rounded);
font-size: 0.9rem;
}
#links {
height: 190px;
overflow-y: scroll;
}
h1, h2 {
font-weight: 300;
margin: 0;
padding: 0;
}
h3, h4 {
text-transform: uppercase;
text-align: left;
color: var(--color-secondary);
}
h1 {
font-size: 4em;
font-weight: 700;
}
h3 {
font-size: 20px;
font-weight: 900;
2020-11-02 15:05:53 +03:00
/*padding: var(--padding);*/
}
h4 {
font-size: 1.1em;
font-weight: 400;
padding-bottom: .5rem;
}
button {
background-color: var(--bg-hover);
color: #fff;
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 4px 2px;
cursor: pointer;
border-radius: 5rem;
text-transform: uppercase;
box-shadow: var(--shadow);
}
2020-11-02 15:05:53 +03:00
button:hover {
background-color: var(--color-theme);
}
2020-11-02 15:05:53 +03:00
.clear {
clear: both;
}
2020-11-02 15:05:53 +03:00
.hidden {
display: none;
opacity: 0;
}
2020-11-02 15:05:53 +03:00
.apps-item, .searchbox {
-o-transition: background-color .3s;
-ms-transition: background-color .3s;
-moz-transition: background-color .3s;
-webkit-transition: background-color .3s;
/* ...and now for the proper property */
transition: background-color .3s;
}
/* HEADERS */
#header {
text-align: center;
}
#header-time, #header-date {
cursor: default;
}
#header-time {
font-size: 5em;
}
#header-date {
margin-top: -1rem;
margin-bottom: .5rem;
}
#header-quote {
2020-11-02 15:05:53 +03:00
margin: 1rem 0;
text-align: left;
2020-11-02 15:05:53 +03:00
}
/* SEARCH */
.searchbar {
margin: 0 auto;
}
.searchbox {
color: var(--color-primary);
background-color: var(--bg-secondary);
border: 1px solid transparent;
border-radius: 4px;
padding: 0.5em 1em 0.5em;
}
.searchbar input:focus {
color: #E5E9F0;
background-color: rgba(94,129,172, .7);
2020-11-02 15:05:53 +03:00
}
textarea:focus, input:focus{
outline: none;
}
2020-11-02 15:05:53 +03:00
.search-engines {
border-radius: var(--rounded);
color: var(--color-secondary);
list-style: none;
display: flex;
margin: 0 auto;
width: 370px;
}
.search-engines li:first-child {
margin: 0 1em 0 1em;
}
.search-engines li:last-child {
margin: 0;
}
.search-engines li {
margin: 0 1em 0 0;
}
.search-engines li.active {
color: var(--color-primary);
font-weight: 700;
}
.search-engines li p {
cursor: default;
transition: all .2s;
font-size: 12px;
}
2020-11-02 15:05:53 +03:00
/* APPLICATIONS */
2020-11-02 15:05:53 +03:00
#apps-loop {
display: grid;
grid-column-gap: 0px;
grid-row-gap: 0px;
grid-template-columns: 1fr 1fr 1fr 1fr;
2020-11-02 15:05:53 +03:00
/* grid-template-rows: 94px; padding med prvim pa drugim rowom */
}
2020-11-02 15:05:53 +03:00
#apps-loop a {
text-decoration: none;
color: var(--color-primary);
}
#apps-loop a:hover {
color: var(--color-white);
}
.apps-item {
display: flex;
flex-direction: row;
flex-wrap: wrap;
height: 64px;
margin: .5rem;
box-shadow: var(--shadow);
background: var(--bg-secondary);
border-radius: var(--rounded);
}
.apps-item:hover {
background-color: var(--bg-hover)!important;
}
.apps-icon {
height: 64px;
margin: 0 1em;
padding-top: 13px;
}
.icon {
font-size: 2.5em;
}
.apps-text {
text-align: left;
display: flex;
flex-direction: column;
justify-content: center;
}
.apps-text span {
font-size: 1em;
font-weight: 500;
text-transform: uppercase;
text-decoration: none!important;
}
.apps-text span:nth-child(2n) {
color: var(--color-secondary);
font-size: 0.8em;
text-transform: lowercase;
}
/* BOOKMARKS */
2020-11-02 15:05:53 +03:00
#links-loop {
display: grid;
flex-wrap: nowrap;
grid-column-gap: 20px;
grid-row-gap: 0px;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: auto;
}
.links-item {
line-height: 1.5rem;
margin-left: 1rem;
2020-11-02 15:05:53 +03:00
margin-bottom: 1.5em;
webkit-font-smoothing: antialiased;
}
.links-item a {
color: var(--color-primary);
display: block;
line-height: 2;
text-decoration: none;
padding-left: .5em;
-o-transition: padding .3s;
-ms-transition: padding .3s;
-moz-transition: padding .3s;
-webkit-transition: padding .3s;
transition: padding .3s;
}
.links-item a:hover {
color: var(--color-white);
padding-left: 1em;
}
2020-11-02 15:05:53 +03:00
/*.links-item a:hover::before {
display: inline;
}
.links-item a::before {
content: '> ';
font-weight: 400;
padding-left: -1em;
display: none;
}*/
/* MODAL */
#modal{
bottom: 0;
left: 0;
opacity: 0;
pointer-events: none;
position: fixed;
right: 0;
top: 0;
transition: all 0.3s;
z-index: 20;
}
#modal:target{
opacity: 1;
pointer-events: auto;
background: rgba(0, 0, 0, .8);
}
#modal>div{
color: #111;
background-color: #ffffff;
box-shadow: 0 14px 28px rgba(0, 0, 0, 3), 0 15px 12px rgba(0, 0, 0, 2.5);
margin-left: auto;
margin-right: auto;
padding: 2em;
margin-top: 25vh;
width: 50%;
height: 25em;
display: flex;
flex-direction: column;
overflow-y: auto;
border-radius: var(--rounded);
}
#modal h1{
color: #333333;
font-size: 2em;
}
#modal h2{
margin-top:1.5em;
}
#modal-header{
display: flex;
justify-content: space-between;
}
#modal-footer{
display: flex;
font-size: 2em;
justify-content: flex-start;
}
#modal-footer a{
margin-right: 0.25em;
color: var(--color-secondary)
}
.modal-close{
color: #000000!important;
font-size: 1.5em;
text-align: center;
text-decoration: none;
}
.modal-close:hover{
color: #000;
}
#modal_init a{
bottom: 1vh;
color: var(--color-secondary);
left: 1vw;
position: fixed;
}
#modal_init a:hover{
color: var(--color-primary);
}
#modal-theme{
border-bottom: 0px solid var(--color-secondary);
display: flex;
flex-wrap: wrap;
margin-bottom: 2em;
}
#providers{
/* margin-bottom: 2em;*/
}
.modaloptions {
width: 50%;
float: left;
padding-left: 10px;
}
.modaloptions a {
display: block;
}
.modaloptions a:hover {
color: var(--color-theme);
text-decoration: none;
}
.modaloptions a:before {
content: "> ";
}
.credits {
width: 50%;
float: left;
padding-left: 10px;
}
/* MOBILE */
2020-11-02 15:05:53 +03:00
@media screen and (max-width: 1130px) {
#container {
width: 90%;
}
}
2020-11-02 15:05:53 +03:00
@media screen and (max-width: 880px) {
#apps-loop {
grid-template-columns: 1fr 1fr 1fr;
2020-11-02 15:05:53 +03:00
/*width: 90vw;*/
}
2020-11-02 15:05:53 +03:00
#links-loop {
grid-template-columns: 1fr 1fr 1fr;
}
}
@media screen and (max-width: 666px) {
2020-11-02 15:05:53 +03:00
#apps-loop {
grid-column-gap: 0px;
grid-row-gap: 0px;
grid-template-columns: 1fr 1fr;
2020-11-02 15:05:53 +03:00
/*width: 90vw;*/
}
2020-11-02 15:05:53 +03:00
#links-loop{
display: grid;
flex-wrap: nowrap;
grid-column-gap: 20px;
grid-row-gap: 0px;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto;
}
}