trianta.dev/default.css

171 lines
2.9 KiB
CSS
Raw Normal View History

body {
2024-08-09 18:19:52 -05:00
font-family: Arial, sans-serif;
font-size: 14px;
color: #4c4f69;
line-height: 1.5;
2024-11-25 22:40:51 -06:00
max-width: 800px;
margin-inline: auto;
2024-11-25 22:48:00 -06:00
background: #dce0e8;
2024-08-09 18:19:52 -05:00
margin: 0px auto;
2024-11-25 18:30:51 -06:00
padding-top: 80px;
2024-08-09 18:19:52 -05:00
}
canvas {
margin: auto;
}
2024-08-09 18:19:52 -05:00
#navigation {
2024-11-25 23:38:48 -06:00
background: #dce0e8;
2024-11-25 18:30:51 -06:00
position: fixed;
top: 0px;
left: 0px;
right: 0px;
2024-11-25 19:07:25 -06:00
text-align: right;
2024-11-25 22:40:51 -06:00
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
2024-11-25 22:42:27 -06:00
padding: 6px;
2024-11-25 22:40:51 -06:00
max-width: 900px;
margin: auto;
2024-11-25 23:22:17 -06:00
display: flex;
}
#navBarLeft {
2024-11-25 23:22:17 -06:00
color: #fe640b;
text-shadow:1px 1px 10px #fe640b;
text-align: left;
2024-11-25 18:19:22 -06:00
font-size: 24px;
2024-11-25 23:27:21 -06:00
padding: 4px;
2024-11-25 23:22:17 -06:00
margin-right: auto;
}
.navItem {
2024-08-09 18:19:52 -05:00
margin: 6px;
margin-top: 0px;
2024-11-25 18:13:39 -06:00
padding: 8px;
font-weight: bold;
2024-11-25 18:51:11 -06:00
border: 2px solid #4c4f69;
2024-11-25 17:14:00 -06:00
border-radius: 12px;
2024-11-25 23:22:17 -06:00
display: inline-block;
}
#top {
margin-bottom: 6px;
border-radius: 16px;
border-top-left-radius: 0px;
margin: 4px auto;
margin-top: 0px;
height: 55px;
}
#main {
2024-11-25 22:35:40 -06:00
margin: 0px auto;
}
.canvas {
width: 780px;
height: 600px;
2024-11-25 18:35:59 -06:00
margin: auto;
}
.cardStats {
font-size: 18px;
}
h1 {
2024-11-25 23:37:18 -06:00
width: 400px;
text-align: center;
font-size: 1.8rem;
2024-11-25 23:37:18 -06:00
margin: auto;
padding: 8px;
2024-11-25 23:37:18 -06:00
background: #e6e9ef;
border-radius: 24px;
}
h2 {
font-size: 1.8rem;
text-align: center;
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;
}
a {
text-decoration: none;
color: #8aadf4;
}
a:hover, a:active {
border-radius: 9px;
text-decoration: underline;
text-shadow: 1px 1px 1px #333;
animation: hover 3s linear infinite;
}
a.button {
margin: 14px 10%;
padding: 4px 12px;
border: 1px outset #bcc0cc;
border-radius: 9px;
color: #1e66f5;
display: inline-block;
background-color: #ccd0da;
text-decoration: none;
width: 80px;
text-align: center;
}
@keyframes hover {
0% { box-shadow: 0 0 8px 4px #eff1f5; }
15% { box-shadow: 0 0 8px 4px #bcc0cc; }
50% { box-shadow: 0 0 8px 4px #7287fd; }
85% { box-shadow: 0 0 8px 4px #bcc0cc; }
100% { box-shadow: 0 0 8px 4px #eff1f5; }
}
@keyframes card {
0% { box-shadow: 0 0 8px 4px #eff1f5; }
50% { box-shadow: 0 0 8px 4px #df8e1d; }
100% { box-shadow: 0 0 8px 4px #eff1f5; }
}
.card {
background: #ccd0da;
text-align: center;
border-radius: 18px;
animation: card 3s linear infinite;
width: 800px;
height: 800px;
margin: 0px auto;
margin-top: 25px;
margin-bottom: 25px;
}
.cardTop {
2024-11-25 22:48:00 -06:00
background: #acb0be;
border-top-left-radius: 18px;
border-top-right-radius: 18px;
}
#pong {
margin: 6px;
border-radius: 9px;
background: #494d64;
}