123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556 |
- html{
- box-sizing: border-box;
- moz-box-sizing: border-box;
- webkit-box-sizing: border-box;
- webkit-text-size-adjust: none;
- }
- html,
- body{
- background-color: var(--color-background);
- color: var(--color-text-pri);
- font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Roboto, sans-serif;
- font-size: 14px;
- font-weight: 400;
- height: auto;
- letter-spacing: -.012em;
- margin: 0;
- padding: 0;
- webkit-font-smoothing: antialiased;
- width: 100vw;
- }
- *,
- *:before,
- *:after{
- box-sizing: inherit;
- moz-box-sizing: inherit;
- webkit-box-sizing: inherit;
- }
- :root{
- module-spacing: 3vh;
- }
- /* TEXT STYLES */
- h1, h2{
- font-weight: 300;
- margin: 0;
- padding: 0;
- text-align: left;
- }
- h2, h3, h4{
- text-transform: uppercase;
- }
- h1{
- font-size: 4em;
- font-weight: 700;
- margin-bottom: 0.5em;
- }
- h2{
- font-size: 16px;
- height: 30px;
-
- }
- h3{
- font-size: 20px;
- font-weight: 900;
- height: 10px;
- }
- h4{
- font-size: 1.1em;
- font-weight: 400;
- height: 10px;
- }
- a{
- color: var(--color-text-pri);
- text-decoration: none;
- }
- a:hover{
- text-decoration: underline;
- webkit-text-decoration-color: var(--color-text-acc);
- webkit-text-decoration-skip: true;
- }
- .icon{
- font-size: 2.5em;
- }
- /* FORMS */
- input{
- background-color: transparent;
- border: 0;
- border-bottom: thin solid var(--color-text-acc);
- color: var(--color-text-pri);
- font-size: 0.8em;
- height: 3.5em;
- transition: all 0.4s ease;
- width: 100%;
- }
- input:focus{
- color-border: var(--color-text-pri);
- outline: none;
- }
- input:focus{
- opacity: 1;
- }
- /* TABLES */
- table{
- border: thin solid #e4e4e4;
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 1em;
- text-align: left;
- width: 100%;
- }
- table td:nth-of-type(2){
- padding-right: 5em;
- }
- table td{
- border: thin solid #e4e4e4;
- color: #333333;
- font-size: 1em;
- overflow: hidden;
- padding: 10px 5px;
- word-break: normal;
- }
- table th{
- border: thin solid #e4e4e4;
- color: #333333;
- font-weight: bold;
- padding: 10px 5px;
- }
- table a{
- color: #333333;
- }
- /* ANIMATION */
- .fade{
- opacity: 0;
- }
- @keyframes fadeseq{
- 100% {
- opacity: 1;
- }
- }
- .fade{
- opacity: 0;
- }
- .fade{
- animation: fadeseq .3s forwards;
- }
- .fade:nth-child(2){
- animation-delay: .4s;
- }
- /* LAYOUT */
- #container{
- align-items: stretch;
- display: grid;
- grid-column-gap: 20px;
- grid-row-gap: 3vh;
- grid-template-columns: 1fr;
- grid-template-rows: 8vh auto;
- justify-items: stretch;
- margin-left: auto;
- margin-right: auto;
- margin-top: 5vh;
- width: 60%;
- }
- /* SECTIONS */
- #header{
- border-bottom: 0px solid var(--color-text-acc);
- z-index: 1;
- }
- #apps_loop{
- border-bottom: 0px solid var(--color-text-acc);
- display: grid;
- grid-column-gap: 0px;
- grid-row-gap: 0px;
- grid-template-columns: 1fr 1fr 1fr 1fr;
- grid-template-rows: 64px;
- padding-bottom: var(--module-spacing);
- }
- .apps_icon{
- height: 64px;
- margin-right: 1em;
- padding-top: 15px;
- }
- .apps_icon span{
- font-size: 2.5em;
- line-height: 3rem;
- }
- .apps_item{
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- height: 64px;
- margin: 0;
- }
- .apps_text{
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .apps_text a{
- font-size: 1em;
- font-weight: 500;
- text-transform: uppercase;
- }
- .apps_text span{
- color: var(--color-text-acc);
- font-size: 0.8em;
- text-transform: uppercase;
- }
- #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-bottom: 2em;
- webkit-font-smoothing: antialiased;
- }
- #links_item h4{
- color: var(--color-text-acc);
- }
- #links_item a{
- display: block;
- line-height: 2;
- }
- /* MODAL */
- #modal{
- overflow-y: auto;
- 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;
- }
- #modal>div{
- background-color: #ffffff;
- box-shadow: 0 14px 28px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.25);
- margin-left: auto;
- margin-right: auto;
- padding: 2em;
- margin-top: 5vh;
- width: 50%;
- display: flex;
- flex-direction: column;
- }
- #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;
- }
- .modal-close{
- color: #000000;
- font-size: 1.5em;
- text-align: center;
- text-decoration: none;
- }
- .modal-close:hover{
- color: #000;
- }
- #modal_init a{
- bottom: 1vh;
- color: var(--color-text-acc);
- left: 1vw;
- position: fixed;
- }
- #modal_init a:hover{
- color: var(--color-text-pri);
- }
- #modal-theme{
- border-bottom: 0px solid var(--color-text-acc);
- display: flex;
- flex-wrap: wrap;
- margin-bottom: 2em;
- }
- #providers{
- margin-bottom: 2em;
- }
- /* THEMING */
- .theme-button{
- font-size: 0.8em;
- margin: 2px;
- width:128px;
- line-height: 3em;
- text-align: center;
- text-transform: uppercase;
- }
- .theme-blackboard{
- background-color: #000000;
- border: 4px solid #5c5c5c;
- color: #FFFDEA;
- }
- .theme-gazette{
- background-color: #F2F7FF;
- border: 4px solid #5c5c5c;
- color: #000000;
- }
- .theme-espresso{
- background-color: #21211F;
- border: 4px solid #4E4E4E;
- color: #D1B59A;
- }
- .theme-cab{
- background-color: #FEED01;
- border: 4px solid #424242;
- color: #1F1F1F;
- }
- .theme-cloud{
- background-color: #f1f2f0;
- border: 4px solid #35342f;
- color: #37bbe4;
- }
- .theme-lime{
- background-color: #263238;
- border: 4px solid #AABBC3;
- color: #aeea00;
- }
- .theme-passion{
- background-color: #f5f5f5;
- border: 4px solid #8e24aa;
- color: #12005e;
- }
- .theme-blues{
- background-color: #2B2C56;
- border: 4px solid #6677EB;
- color: #EFF1FC;
- }
- .theme-chalk{
- background-color: #263238;
- border: 4px solid #FF869A;
- color: #AABBC3;
- }
- .theme-tron{
- background-color: #242B33;
- border: 4px solid #6EE2FF;
- color: #EFFBFF;
- }
- .theme-paper{
- background-color: #F8F6F1;
- border: 4px solid #F5E1A4;
- color: #4C432E;
- }
- /* MEDIA QUERIES */
- @media screen and (max-width: 1260px)
- {
- #container
- {
- align-items: stretch;
- display: grid;
- grid-column-gap: 10px;
- grid-row-gap: 0px;
- grid-template-columns: 1fr;
- grid-template-rows: 80px auto;
- justify-items: stretch;
- margin-bottom: 1vh;
- margin-left: auto;
- margin-right: auto;
- width: 90%;
- }
-
- #apps_loop{
- grid-template-columns: 1fr 1fr 1fr;
- width: 100vw;
- }
- #links_loop {
- grid-template-columns: 1fr 1fr 1fr;
- }
- #modal>div{
- margin-left: auto;
- margin-right: auto;
- margin-top: 5vh;
- width: 90%;
- }
- }
- @media screen and (max-width: 667px)
- {
- html{
- font-size: calc(16px + 6 * ((100vw - 320px) / 680));
- }
- #container{
- align-items: stretch;
- display: grid;
- grid-column-gap: 20px;
- grid-row-gap: 0px;
- grid-template-columns: 1fr;
- grid-template-rows: 80px auto;
- justify-items: stretch;
- margin-bottom: 1vh;
- width: 90%;
- }
- h1{
- font-size: 4em;
- height: auto;
- margin-bottom: 0em;
- }
- h2{
- font-size: 1em;
- height: auto;
- margin-bottom: 0em;
- }
- h3{
- font-size: 1em;
- }
- #apps_loop{
- grid-column-gap: 0px;
- grid-row-gap: 0px;
- grid-template-columns: 1fr 1fr;
- width: 100vw;
- }
- .apps_icon{
- height: 64px;
- margin-right: 0.8em;
- padding-top: 14px;
- }
- .apps_icon span{
- font-size: 2em;
- line-height: 2.5rem;
- }
-
- #links_loop{
- display: grid;
- flex-wrap: nowrap;
- grid-column-gap: 20px;
- grid-row-gap: 0px;
- grid-template-columns: 1fr 1fr;
- grid-template-rows: auto;
- }
- }
- /* Small Screens */
- @media only screen and (max-width: 400px) {
- #app-address {
- display: none;
- }
- }
|