sync
This commit is contained in:
105
public/main.css
105
public/main.css
@@ -1,4 +1,3 @@
|
||||
@charset "UTF-8";
|
||||
.RV-Dummy {
|
||||
overflow: hidden;
|
||||
background-color: #F4A460;
|
||||
@@ -83,27 +82,27 @@
|
||||
.RV-AspectRatio--1to2 {
|
||||
--aspectX: 1;
|
||||
--aspectY: 2;
|
||||
padding-top: calc(100% * calc(var(--aspectY) / var(--aspectX)));
|
||||
padding-top: calc(100% * var(--aspectY) / var(--aspectX));
|
||||
}
|
||||
.RV-AspectRatio--2to1 {
|
||||
--aspectX: 2;
|
||||
--aspectY: 1;
|
||||
padding-top: calc(100% * calc(var(--aspectY) / var(--aspectX)));
|
||||
padding-top: calc(100% * var(--aspectY) / var(--aspectX));
|
||||
}
|
||||
.RV-AspectRatio--3to2 {
|
||||
--aspectX: 3;
|
||||
--aspectY: 2;
|
||||
padding-top: calc(100% * calc(var(--aspectY) / var(--aspectX)));
|
||||
padding-top: calc(100% * var(--aspectY) / var(--aspectX));
|
||||
}
|
||||
.RV-AspectRatio--4to3 {
|
||||
--aspectX: 4;
|
||||
--aspectY: 3;
|
||||
padding-top: calc(100% * calc(var(--aspectY) / var(--aspectX)));
|
||||
padding-top: calc(100% * var(--aspectY) / var(--aspectX));
|
||||
}
|
||||
.RV-AspectRatio--16to9 {
|
||||
--aspectX: 16;
|
||||
--aspectY: 9;
|
||||
padding-top: calc(100% * calc(var(--aspectY) / var(--aspectX)));
|
||||
padding-top: calc(100% * var(--aspectY) / var(--aspectX));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -315,7 +314,7 @@ html {
|
||||
overflow: hidden;
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
flex-basis: calc(100%/3);
|
||||
flex-basis: 33.3333333333%;
|
||||
}
|
||||
.RV-Flex__Item--quarter {
|
||||
overflow: hidden;
|
||||
@@ -371,7 +370,7 @@ html {
|
||||
.RV-BreakPoint__Item {
|
||||
flex-grow: 5;
|
||||
flex-shrink: 5;
|
||||
flex-basis: calc(var(--breakPoint) * 999 - 100% * 999);
|
||||
flex-basis: calc(var(--breakPoint) * 999 - 99900%);
|
||||
overflow: hidden;
|
||||
--outer-spacing: 0;
|
||||
--inner-spacing: 0;
|
||||
@@ -412,7 +411,7 @@ html {
|
||||
gap: var(--gap);
|
||||
}
|
||||
.RV-Grid__Item {
|
||||
height: calc(var(--itemHeight) - calc(2*var(--inner-spacing)));
|
||||
height: calc(var(--itemHeight) - 2 * var(--inner-spacing));
|
||||
}
|
||||
.RV-Grid__Item > * {
|
||||
height: 100%;
|
||||
@@ -926,7 +925,7 @@ body {
|
||||
height: 1em;
|
||||
width: 1em;
|
||||
border: 1px solid #565656;
|
||||
padding: 0 calc(.5em + 2px);
|
||||
padding: 0 calc(0.5em + 2px);
|
||||
margin-right: 0.7em;
|
||||
}
|
||||
|
||||
@@ -26397,7 +26396,7 @@ label + .LP-Input--disabled .LP-Input__Field:disabled {
|
||||
}
|
||||
|
||||
.mdi-blank::before {
|
||||
content: "";
|
||||
content: "\f68c";
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
@@ -26815,6 +26814,84 @@ label + .LP-Input--disabled .LP-Input__Field:disabled {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.LP-Voting {
|
||||
font-family: "Montserrat", Helvetica, sans-serif;
|
||||
gap: 16PX;
|
||||
font-size: 42px;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.LP-Voting .LP-Headline {
|
||||
margin-bottom: 0;
|
||||
height: 33px;
|
||||
}
|
||||
.LP-Voting__Left {
|
||||
position: relative;
|
||||
}
|
||||
.LP-Voting__Choices {
|
||||
display: flex;
|
||||
flex-direction: row-reverse;
|
||||
justify-content: flex-end;
|
||||
margin-bottom: 27px;
|
||||
width: max-content;
|
||||
--indication-color: #C09F80;
|
||||
}
|
||||
.LP-Voting__Choices:hover {
|
||||
--indication-color: #D7CEC7;
|
||||
}
|
||||
.LP-Voting__Vote {
|
||||
color: #D7CEC7;
|
||||
text-decoration: none;
|
||||
transition: color 0.4s;
|
||||
}
|
||||
.LP-Voting__Vote:hover, .LP-Voting__Vote:hover ~ .LP-Voting__Vote, .LP-Voting__Vote:focus, .LP-Voting__Votefocus ~ .LP-Voting__Vote {
|
||||
color: #565656;
|
||||
cursor: pointer;
|
||||
}
|
||||
.LP-Voting__Vote:hover .LP-Voting__Label {
|
||||
visibility: visible;
|
||||
}
|
||||
.LP-Voting__Vote--overall {
|
||||
color: var(--indication-color);
|
||||
}
|
||||
.LP-Voting__Label {
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
height: 1.5em;
|
||||
left: 0px;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
top: 83px;
|
||||
background-color: white;
|
||||
color: #565656;
|
||||
}
|
||||
.LP-Voting__Label, .LP-Voting__CurrentVote {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.LP-Voting__CurrentVote {
|
||||
margin-top: -29px;
|
||||
color: #C09F80;
|
||||
}
|
||||
.LP-Voting__Date, .LP-Voting__Vote {
|
||||
font-weight: bold;
|
||||
}
|
||||
.LP-Voting__UserVote .LP-Voting__Vote, .LP-Voting__UserVote .LP-Voting__Vote:hover {
|
||||
color: black;
|
||||
cursor: unset;
|
||||
}
|
||||
.LP-Voting__Info {
|
||||
font-size: 18px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
}
|
||||
.LP-Voting__InfoLabel {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.LP-Header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@@ -26895,7 +26972,7 @@ label + .LP-Input--disabled .LP-Input__Field:disabled {
|
||||
justify-content: center;
|
||||
}
|
||||
.LP-PlaceGrid .LP-PlaceGrid__Grid .LP-PlaceGrid__Item {
|
||||
height: calc(var(--itemHeight) - calc(2*var(--inner-spacing)));
|
||||
height: calc(var(--itemHeight) - 2 * var(--inner-spacing));
|
||||
}
|
||||
.LP-PlaceGrid .LP-PlaceGrid__Grid .LP-PlaceGrid__Item > * {
|
||||
height: 100%;
|
||||
@@ -26945,7 +27022,7 @@ label + .LP-Input--disabled .LP-Input__Field:disabled {
|
||||
--icon-color: #C09F80;
|
||||
}
|
||||
.LP-LinkList .RV-Iconized__Icon {
|
||||
font-size: calc(var(--itemHeight) * .75);
|
||||
font-size: calc(var(--itemHeight) * 0.75);
|
||||
line-height: 1em;
|
||||
color: var(--icon-color);
|
||||
transition: color 0.2s;
|
||||
@@ -26998,7 +27075,7 @@ label + .LP-Input--disabled .LP-Input__Field:disabled {
|
||||
.LP-FooterColumns__Item {
|
||||
flex-grow: 5;
|
||||
flex-shrink: 5;
|
||||
flex-basis: calc(var(--breakPoint) * 999 - 100% * 999);
|
||||
flex-basis: calc(var(--breakPoint) * 999 - 99900%);
|
||||
overflow: hidden;
|
||||
--outer-spacing: 0;
|
||||
--inner-spacing: 0;
|
||||
|
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user