forked from publiccodenet/processcode.publiccode.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update form fpc export 6 with absolute/px as AnimaPackage-Play-TVrLj
- Loading branch information
Max Carlson
committed
May 22, 2024
1 parent
d1c6e6c
commit 55352a7
Showing
227 changed files
with
16,180 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"); | ||
@import url("https://fonts.googleapis.com/css?family=Mulish:500,700,600,400|IBM+Plex+Serif:400,400italic"); | ||
/* The following line is used to measure usage of this code. You can remove it if you want. */ | ||
|
||
|
||
|
||
|
||
.screen textarea:focus, | ||
.screen input:focus { | ||
outline: none; | ||
} | ||
|
||
.screen * { | ||
-webkit-font-smoothing: antialiased; | ||
box-sizing: border-box; | ||
} | ||
|
||
.screen div { | ||
-webkit-text-size-adjust: none; | ||
} | ||
|
||
.screen a { | ||
display: contents; | ||
text-decoration: none; | ||
} | ||
|
||
.overlay-base { | ||
display: none; | ||
height: 100%; | ||
opacity: 0; | ||
position: fixed; | ||
top: 0; | ||
width: 100%; | ||
} | ||
|
||
.overlay-base.animate-appear { | ||
align-items: center; | ||
animation: reveal 0.3s ease-in-out 1 normal forwards; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
opacity: 0; | ||
} | ||
|
||
.overlay-base.animate-disappear { | ||
animation: reveal 0.3s ease-in-out 1 reverse forwards; | ||
display: block; | ||
opacity: 1; | ||
pointer-events: none; | ||
} | ||
|
||
.overlay-base.animate-disappear * { | ||
pointer-events: none; | ||
} | ||
|
||
@keyframes reveal { | ||
from { | ||
opacity: 0; | ||
} | ||
to { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
.valign-text-middle { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
} | ||
|
||
.hidden, | ||
.hidden * { | ||
pointer-events: none; | ||
visibility: hidden; | ||
} | ||
|
||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
.divhoriz { | ||
align-self: stretch; | ||
background-color: var(--fpccharcoal); | ||
height: 2px; | ||
position: relative; | ||
width: 100%; | ||
} | ||
|
||
.logo-lockup { | ||
align-items: center; | ||
background-color: transparent; | ||
cursor: pointer; | ||
flex: 0 0 auto; | ||
gap: 13px; | ||
position: relative; | ||
} | ||
|
||
.attrportraits { | ||
background-color: transparent; | ||
border-radius: 80px; | ||
height: 80px; | ||
position: relative; | ||
width: 80.00028228759766px; | ||
} | ||
|
||
.governance-game { | ||
align-self: stretch; | ||
position: relative; | ||
} | ||
|
||
.main { | ||
align-items: flex-start; | ||
align-self: stretch; | ||
background-color: transparent; | ||
display: flex; | ||
flex: 0 0 auto; | ||
flex-direction: column; | ||
gap: 15px; | ||
position: relative; | ||
width: 100%; | ||
} | ||
|
||
.process-codes { | ||
align-self: stretch; | ||
position: relative; | ||
} | ||
|
||
.rim { | ||
background-color: transparent; | ||
border: 3.999985456466675px solid; | ||
border-radius: 44px; | ||
height: 110.00%; | ||
left: -5.00%; | ||
position: absolute; | ||
top: -5.00%; | ||
width: 110.00%; | ||
} |
Oops, something went wrong.