2024-08-09 00:25:49 -05:00
|
|
|
body {
|
2024-08-09 18:19:52 -05:00
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
font-size: 14px;
|
2024-08-09 03:02:32 -05:00
|
|
|
color: #cad3f5;
|
2024-08-09 00:25:49 -05:00
|
|
|
line-height: 1.5;
|
2024-08-09 18:19:52 -05:00
|
|
|
max-width: 1920px;
|
2024-08-09 00:25:49 -05:00
|
|
|
margin-inline: auto;
|
2024-08-09 03:02:32 -05:00
|
|
|
background: #24273a;
|
2024-08-09 18:19:52 -05:00
|
|
|
margin: 0px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#navigation {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2024-08-09 18:46:40 -05:00
|
|
|
.navItem {
|
2024-08-09 18:19:52 -05:00
|
|
|
margin: 6px;
|
|
|
|
margin-top: 0px;
|
|
|
|
padding: 8px;
|
|
|
|
line-height: 21px;
|
|
|
|
display: inline-block;
|
2024-11-25 14:37:17 -06:00
|
|
|
text-align: right;
|
2024-08-09 00:25:49 -05:00
|
|
|
}
|
|
|
|
|
2024-08-09 03:02:32 -05:00
|
|
|
#top {
|
|
|
|
margin-bottom: 6px;
|
|
|
|
border-radius: 16px;
|
|
|
|
border-top-left-radius: 0px;
|
|
|
|
margin: 4px auto;
|
|
|
|
margin-top: 0px;
|
|
|
|
height: 55px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main {
|
2024-11-25 14:37:17 -06:00
|
|
|
margin: 0px 120px;
|
|
|
|
display: flex;
|
2024-08-09 17:39:10 -05:00
|
|
|
/*background: #1e2030;*/
|
2024-08-09 03:02:32 -05:00
|
|
|
}
|
|
|
|
|
2024-11-25 14:37:17 -06:00
|
|
|
.canvas {
|
|
|
|
width: 780px;
|
|
|
|
height: 600px;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2024-08-09 18:46:40 -05:00
|
|
|
.cardStats {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2024-08-09 00:25:49 -05:00
|
|
|
h1 {
|
2024-08-09 03:02:32 -05:00
|
|
|
width: 130px;
|
2024-08-09 00:25:49 -05:00
|
|
|
text-align: center;
|
2024-08-09 03:02:32 -05:00
|
|
|
display: inline-block;
|
|
|
|
font-size: 1.8rem;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 8px;
|
|
|
|
border-top-left-radius: 18px;
|
|
|
|
border-top-right-radius: 18px;
|
2024-08-09 00:25:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2024-08-09 17:39:10 -05:00
|
|
|
color: #6c6f85;
|
2024-08-09 03:02:32 -05:00
|
|
|
font-size: 1.8rem;
|
|
|
|
text-align: center;
|
2024-08-09 00:25:49 -05:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
color: #dc8a78;
|
|
|
|
font-size: 1.3rem;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
color: #8c8fa1;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
2024-08-09 18:19:52 -05:00
|
|
|
margin: 0px;
|
2024-08-09 00:25:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2024-08-09 03:02:32 -05:00
|
|
|
padding: 8px;
|
|
|
|
color: #8aadf4;
|
2024-08-09 00:25:49 -05:00
|
|
|
}
|
2024-08-09 03:02:32 -05:00
|
|
|
|
2024-08-09 00:25:49 -05:00
|
|
|
a:hover, a:active {
|
2024-08-09 03:02:32 -05:00
|
|
|
border-radius: 9px;
|
2024-08-09 00:25:49 -05:00
|
|
|
text-decoration: underline;
|
|
|
|
text-shadow: 1px 1px 1px #333;
|
2024-08-09 17:39:10 -05:00
|
|
|
animation: hover 3s linear infinite;
|
2024-08-09 03:02:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
a.button {
|
|
|
|
margin: 14px 10%;
|
|
|
|
padding: 4px 12px;
|
|
|
|
border: 1px outset #494d64;
|
|
|
|
border-radius: 9px;
|
|
|
|
color: #8aadf4;
|
|
|
|
display: inline-block;
|
|
|
|
background-color: #363a4f;
|
|
|
|
text-decoration: none;
|
|
|
|
width: 80px;
|
|
|
|
text-align: center;
|
2024-08-09 00:25:49 -05:00
|
|
|
}
|
|
|
|
|
2024-08-09 17:39:10 -05:00
|
|
|
@keyframes hover {
|
2024-08-09 03:02:32 -05:00
|
|
|
0% { box-shadow: 0 0 8px 4px #24273a; }
|
|
|
|
15% { box-shadow: 0 0 8px 4px #494d64; }
|
|
|
|
50% { box-shadow: 0 0 8px 4px #b7bdf8; }
|
|
|
|
85% { box-shadow: 0 0 8px 4px #494d64; }
|
|
|
|
100% { box-shadow: 0 0 8px 4px #24273a; }
|
|
|
|
}
|
|
|
|
|
2024-08-09 17:39:10 -05:00
|
|
|
@keyframes card {
|
|
|
|
0% { box-shadow: 0 0 8px 4px #24273a; }
|
|
|
|
50% { box-shadow: 0 0 8px 4px #df8e1d; }
|
|
|
|
100% { box-shadow: 0 0 8px 4px #24273a; }
|
|
|
|
}
|
|
|
|
|
2024-08-09 03:02:32 -05:00
|
|
|
.card {
|
|
|
|
background: #363a4f;
|
|
|
|
text-align: center;
|
2024-11-25 15:34:53 -06:00
|
|
|
border-radius: 18px;
|
2024-08-09 17:39:10 -05:00
|
|
|
animation: card 3s linear infinite;
|
2024-08-27 23:32:54 -05:00
|
|
|
width: 800px;
|
|
|
|
height: 800px;
|
2024-08-09 18:46:40 -05:00
|
|
|
margin: 0px auto;
|
2024-08-27 23:32:54 -05:00
|
|
|
margin-top: 25px;
|
|
|
|
margin-bottom: 25px;
|
2024-08-09 03:02:32 -05:00
|
|
|
}
|
|
|
|
|
2024-08-09 18:46:40 -05:00
|
|
|
.cardTop {
|
2024-08-09 03:02:32 -05:00
|
|
|
background: #1e2030;
|
|
|
|
border-top-left-radius: 18px;
|
|
|
|
border-top-right-radius: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pong {
|
|
|
|
margin: 6px;
|
|
|
|
border-radius: 9px;
|
|
|
|
background: #494d64;
|
|
|
|
}
|