Fristen, index, css

This commit is contained in:
2026-03-30 21:46:43 +02:00
parent b34bfb0a47
commit d93d3bd1d1
8 changed files with 79 additions and 19 deletions

View File

@@ -257,3 +257,40 @@ nav {
text-align: center;
flex-shrink: 0;
}
.split-left {
float: left;
width: 50%;
}
.split-right {
float: left;
width: 50%;
border-left: 1px dotted #000;
padding-left: 30px;
}
.content::after {
content: "";
display: table;
clear: both;
}
.apply-button {
font-size: 2.5em;
padding: 20px 40px;
border: 5px solid cyan;
border-radius: 10px;
cursor: pointer;
font-weight: bold;
animation: blink 2s infinite;
}
@keyframes blink {
0%, 100% {
background-color: white;
color: #4b0600;
}
50% {
background-color: cyan;
color: black;
}
}

View File

@@ -1,10 +0,0 @@
.split-left {
float: left;
width: 21%;
}
.split-right {
float: left;
width: 50%;
border-left: 1px dotted #000;
padding-left: 30px;
}