yes
This commit is contained in:
commit
2aef055057
37 changed files with 975 additions and 0 deletions
6
css/snow.css
Normal file
6
css/snow.css
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
.snowflake {
|
||||
color: #fff;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
@-webkit-keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@-webkit-keyframes snowflakes-shake{0%{-webkit-transform:translateX(0px);transform:translateX(0px)}50%{-webkit-transform:translateX(80px);transform:translateX(80px)}100%{-webkit-transform:translateX(0px);transform:translateX(0px)}}@keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@keyframes snowflakes-shake{0%{transform:translateX(0px)}50%{transform:translateX(80px)}100%{transform:translateX(0px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;-webkit-animation-name:snowflakes-fall,snowflakes-shake;-webkit-animation-duration:10s,3s;-webkit-animation-timing-function:linear,ease-in-out;-webkit-animation-iteration-count:infinite,infinite;-webkit-animation-play-state:running,running;animation-name:snowflakes-fall,snowflakes-shake;animation-duration:10s,3s;animation-timing-function:linear,ease-in-out;animation-iteration-count:infinite,infinite;animation-play-state:running,running}.snowflake:nth-of-type(0){left:1%;-webkit-animation-delay:0s,0s;animation-delay:0s,0s}.snowflake:nth-of-type(1){left:10%;-webkit-animation-delay:1s,1s;animation-delay:1s,1s}.snowflake:nth-of-type(2){left:20%;-webkit-animation-delay:6s,.5s;animation-delay:6s,.5s}.snowflake:nth-of-type(3){left:30%;-webkit-animation-delay:4s,2s;animation-delay:4s,2s}.snowflake:nth-of-type(4){left:40%;-webkit-animation-delay:2s,2s;animation-delay:2s,2s}.snowflake:nth-of-type(5){left:50%;-webkit-animation-delay:8s,3s;animation-delay:8s,3s}.snowflake:nth-of-type(6){left:60%;-webkit-animation-delay:6s,2s;animation-delay:6s,2s}.snowflake:nth-of-type(7){left:70%;-webkit-animation-delay:2.5s,1s;animation-delay:2.5s,1s}.snowflake:nth-of-type(8){left:80%;-webkit-animation-delay:1s,0s;animation-delay:1s,0s}.snowflake:nth-of-type(9){left:90%;-webkit-animation-delay:3s,1.5s;animation-delay:3s,1.5s}
|
||||
282
css/style.css
Normal file
282
css/style.css
Normal file
|
|
@ -0,0 +1,282 @@
|
|||
@font-face {
|
||||
font-family: "EMcomic";
|
||||
src: url("../fonts/emcomic.ttf"), format("truetype");
|
||||
}
|
||||
|
||||
:root {
|
||||
--fg-primary: #e621bb;
|
||||
--bg-primary: #e621bb20;
|
||||
--bg-secondary: #e621bb40;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "EMcomic", cursive;
|
||||
background-color: black;
|
||||
background-image: url("../img/stars.gif");
|
||||
color: white;
|
||||
min-height: 100vh;
|
||||
image-rendering: pixelated;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion) {
|
||||
body {
|
||||
background-image: unset;
|
||||
}
|
||||
}
|
||||
|
||||
hr {
|
||||
border: none;
|
||||
border-bottom: 1px solid var(--bg-secondary);
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 35rem;
|
||||
max-width: 100%;
|
||||
padding-top: 1rem;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.section {
|
||||
width: calc(100% - 4rem);
|
||||
max-width: calc(100% - 4rem);
|
||||
padding: 0.75rem 1rem;
|
||||
margin-bottom: 1rem;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
border: 1px solid var(--fg-primary);
|
||||
border-radius: 5px;
|
||||
background: var(--bg-primary);
|
||||
}
|
||||
|
||||
.header {
|
||||
text-align: center;
|
||||
|
||||
margin-bottom: 0;
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
text-align: center;
|
||||
|
||||
padding: 0.33rem 1rem;
|
||||
border-top: 1px solid var(--fg-primary);
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
|
||||
margin-top: 0;
|
||||
background: var(--bg-secondary);
|
||||
}
|
||||
|
||||
.navbar ul {
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-evenly;
|
||||
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.navbar ul li {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.navbar ul li a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
a {
|
||||
font-weight: 700;
|
||||
color: var(--fg-primary);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.section:not(.header) > h2 {
|
||||
color: var(--fg-primary);
|
||||
border-bottom: 1px solid var(--fg-primary);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.copyleft {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
/* Stolen from the European Union */
|
||||
#globan {
|
||||
background-color: #eee;
|
||||
padding: 0 0 0 16px;
|
||||
position: relative;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
#globan,
|
||||
#globan *,
|
||||
#globan *:after,
|
||||
#globan *:before {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#globan:after {
|
||||
content: "" !important;
|
||||
display: block;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#globan * {
|
||||
font-size: 14px;
|
||||
font-family: Arial, Verdana;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#globan [hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#globan .globan-center {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#globan .globan-content {
|
||||
height: 28px;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
#globan.dark {
|
||||
background-color: #404040;
|
||||
}
|
||||
|
||||
#globan.dark .globan-content {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#globan.logo-flag .globan-content:before {
|
||||
content: " " !important;
|
||||
display: inline-block;
|
||||
width: 24px;
|
||||
height: 16px;
|
||||
background: center center / 110% auto no-repeat #004494 url(../img/flag.svg);
|
||||
float: left;
|
||||
margin: 5.5px 8px 0 0;
|
||||
border: 1px solid #004494;
|
||||
}
|
||||
|
||||
#globan.dark.logo-flag .globan-content:before {
|
||||
border-color: #7f99cc;
|
||||
}
|
||||
|
||||
#globan span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#globan span:first-child {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#globan .globan-dropdown {
|
||||
background-color: #fff;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 23px;
|
||||
padding: 12px 16px;
|
||||
margin: 5px 0 0 0;
|
||||
max-width: 500px;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.4);
|
||||
-webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.4);
|
||||
-moz-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.4);
|
||||
color: #444;
|
||||
}
|
||||
|
||||
#globan .globan-dropdown p {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
#globan .globan-dropdown p:nth-child(2) {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#globan .globan-dropdown a {
|
||||
color: #004494;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#globan .globan-dropdown a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#globan.reverse .globan-center {
|
||||
float: right;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
#globan.reverse.logo-flag .globan-content:before {
|
||||
float: right;
|
||||
margin: 2px 0 0 10px;
|
||||
}
|
||||
|
||||
#globan.reverse .globan-content {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#globan.reverse .globan-content a,
|
||||
#globan.reverse .globan-content a:hover,
|
||||
#globan.reverse .globan-content a:focus,
|
||||
#globan.reverse .globan-content a:active {
|
||||
float: left;
|
||||
margin: 0 20px 0 0;
|
||||
}
|
||||
|
||||
#globan.reverse .globan-content a:after {
|
||||
float: left;
|
||||
margin: 0 10px 0 0;
|
||||
}
|
||||
|
||||
#globan.reverse .globan-dropdown {
|
||||
left: 0;
|
||||
right: auto;
|
||||
direction: rtl;
|
||||
}
|
||||
|
||||
#globan.fixed {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.globan-invalid-domain {
|
||||
background-color: #ffd617;
|
||||
color: #444;
|
||||
text-align: center;
|
||||
padding: 5px 16px;
|
||||
display: block;
|
||||
margin-left: -16px;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue