v1.4.9 - Fixed (most of) style in all documents
This commit is contained in:
+32
-2
@@ -2,6 +2,10 @@
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.flex-column {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.d-none {
|
||||
display: none !important;
|
||||
}
|
||||
@@ -28,8 +32,6 @@
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
|
||||
nav > .pagination {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
@@ -72,3 +74,31 @@ nav {
|
||||
.calendar-table__col.disabled > .calendar-table__item {
|
||||
color: darkgrey;
|
||||
}
|
||||
|
||||
.position-fixed {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
.top-0 {
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.zindex-100 {
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.border-none {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.outline-none {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.overflow-visible {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
ol {
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
@@ -34,14 +34,46 @@
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.pl-0 {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.pr-0 {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.pb-0 {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.pt-0 {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.m-none {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.p-none {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ml-1 {
|
||||
margin-left: .75rem;
|
||||
}
|
||||
|
||||
.pl-1 {
|
||||
padding-left: .75rem;
|
||||
}
|
||||
|
||||
.mr-1 {
|
||||
margin-right: .75rem;
|
||||
}
|
||||
|
||||
.pr-1 {
|
||||
padding-right: .75rem;
|
||||
}
|
||||
|
||||
.mb-1 {
|
||||
margin-bottom: .75rem;
|
||||
}
|
||||
@@ -50,6 +82,10 @@
|
||||
margin-top: .75rem;
|
||||
}
|
||||
|
||||
.pt-1 {
|
||||
padding-top: .75rem;
|
||||
}
|
||||
|
||||
.ml-2 {
|
||||
margin-left: 3rem;
|
||||
}
|
||||
@@ -62,10 +98,18 @@
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.mb-2rem {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.mt-2 {
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
.mt-2rem {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.ml-3 {
|
||||
margin-left: 3rem;
|
||||
}
|
||||
@@ -81,3 +125,7 @@
|
||||
.mt-3 {
|
||||
margin-top: 4.75rem;
|
||||
}
|
||||
|
||||
.ml-4px {
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
+32
-1
@@ -14,7 +14,6 @@ html, body {
|
||||
}
|
||||
|
||||
a {
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@@ -42,6 +41,18 @@ a {
|
||||
width: 15%;
|
||||
}
|
||||
|
||||
.w-1em {
|
||||
width: 1em;
|
||||
}
|
||||
|
||||
.w-6em {
|
||||
width: 6em;
|
||||
}
|
||||
|
||||
.w-7em {
|
||||
width: 7em;
|
||||
}
|
||||
|
||||
.h-100 {
|
||||
height: 100%;
|
||||
}
|
||||
@@ -58,6 +69,10 @@ a {
|
||||
background-color: $sde-blue;
|
||||
}
|
||||
|
||||
.bg-white {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.block-container {
|
||||
padding: 0 8px;
|
||||
}
|
||||
@@ -85,3 +100,19 @@ a {
|
||||
align-self: center;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.lh-2 {
|
||||
line-height: 2rem;
|
||||
}
|
||||
|
||||
.bs-cover {
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.bp-center {
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.resize-vertical {
|
||||
resize: vertical;;
|
||||
}
|
||||
|
||||
+25
-1
@@ -1,5 +1,9 @@
|
||||
.text-white {
|
||||
color: #ffffff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.text-black {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
@@ -41,3 +45,23 @@
|
||||
span.toggle__text.sde-blue {
|
||||
font-size: 5vw;
|
||||
}
|
||||
|
||||
.justify-content-center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.justify-unset {
|
||||
justify-content: unset;
|
||||
}
|
||||
|
||||
.justify-content-space {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.event-text-shadow {
|
||||
text-shadow: 2px 2px 2px #00788A;
|
||||
}
|
||||
|
||||
.font-20px {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
@@ -554,3 +554,8 @@ $primary-color: $blue;
|
||||
from {bottom: 30px; opacity: 1;}
|
||||
to {bottom: 0; opacity: 0;}
|
||||
}
|
||||
|
||||
iframe {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user