58 lines
838 B
CSS
58 lines
838 B
CSS
body {
|
|
background-color: #333;
|
|
}
|
|
|
|
.sticker {
|
|
background-color: black;
|
|
height: 40vh;
|
|
width: 50vh;
|
|
position: relative;
|
|
margin: 5vh auto;
|
|
}
|
|
|
|
.sticker .red {
|
|
height: 10%;
|
|
width: 100%;
|
|
margin: 0 0;
|
|
background-color: red;
|
|
}
|
|
|
|
.sticker .text {
|
|
color: white;
|
|
font-family: "Courier new", monospace, sans-serif;
|
|
font-weight: bold;
|
|
font-size: 4em;
|
|
text-align: center;
|
|
}
|
|
|
|
.sticker .text.bigger {
|
|
font-size: 7em;
|
|
}
|
|
|
|
|
|
.labels {
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
.labels .card {
|
|
color: white;
|
|
background-color: black;
|
|
margin: 0 20px;
|
|
padding: 20px;
|
|
font-family: "Courier new", monospace, sans-serif;
|
|
font-size: 3em;
|
|
font-align: center;
|
|
}
|
|
|
|
.labels .card a {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.labels .card a:hover,
|
|
.labels .card a:focus {
|
|
text-decoration: underline;
|
|
}
|