121 lines
1.9 KiB
CSS
121 lines
1.9 KiB
CSS
|
@font-face {
|
||
|
font-family: "inter";
|
||
|
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
color: white;
|
||
|
background: rgb(255,0,0);
|
||
|
background: linear-gradient(336deg, rgba(255,0,0,1) 0%, rgba(74,73,255,1) 100%);
|
||
|
font-family: inter;
|
||
|
background-attachment: fixed;
|
||
|
margin-left: 20px;
|
||
|
margin-right: 20px;
|
||
|
margin-top: 20px;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.tiny {
|
||
|
font-size: 5pt;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
font-size: 35pt;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
font-size: 20pt;
|
||
|
}
|
||
|
|
||
|
h3 {
|
||
|
font-size: 15pt;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
font-size: 12pt;
|
||
|
}
|
||
|
|
||
|
.section {
|
||
|
background-color: rgba(0, 0, 0, 0.1);
|
||
|
max-width: 75%;
|
||
|
border-radius: 10px;
|
||
|
margin-top: 10px;
|
||
|
margin-bottom: 10px;
|
||
|
padding: 5px
|
||
|
}
|
||
|
|
||
|
.section h2 {
|
||
|
margin: 20px;
|
||
|
}
|
||
|
|
||
|
.box {
|
||
|
color: white;
|
||
|
background: rgba(0, 0, 0, 0.5);
|
||
|
max-width: 95%;
|
||
|
border-radius: 10px;
|
||
|
margin-top: 10px;
|
||
|
margin-bottom: 10px;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
padding: 5px;
|
||
|
}
|
||
|
|
||
|
.box p {
|
||
|
margin: 10px;
|
||
|
}
|
||
|
.box h3 {
|
||
|
margin: 10px;
|
||
|
}
|
||
|
.box img {
|
||
|
margin: 10px;
|
||
|
}
|
||
|
.box button {
|
||
|
margin: 10px;
|
||
|
}
|
||
|
|
||
|
.bluebutton {
|
||
|
color: white;
|
||
|
font-size: 12pt;
|
||
|
background: rgba(0, 0, 255, 0.3);
|
||
|
font-family: inter;
|
||
|
border-radius: 10px;
|
||
|
border: none;
|
||
|
padding: 5px;
|
||
|
}
|
||
|
.greenbutton {
|
||
|
color: white;
|
||
|
font-size: 12pt;
|
||
|
background: rgba(0, 255, 0, 0.3);
|
||
|
font-family: inter;
|
||
|
border-radius: 10px;
|
||
|
border: none;
|
||
|
padding: 5px;
|
||
|
}
|
||
|
.redbutton {
|
||
|
color: white;
|
||
|
font-size: 12pt;
|
||
|
background: rgba(255, 0, 0, 0.3);
|
||
|
font-family: inter;
|
||
|
border-radius: 10px;
|
||
|
border: none;
|
||
|
padding: 5px;
|
||
|
}
|
||
|
.backbutton {
|
||
|
color: white;
|
||
|
font-size: 12pt;
|
||
|
background: rgba(255, 0, 0, 0.3);
|
||
|
font-family: inter;
|
||
|
border-radius: 10px;
|
||
|
border: none;
|
||
|
padding: 5px;
|
||
|
}
|
||
|
.hidden {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
|