Updated application

This commit is contained in:
transatoshi
2025-02-08 07:23:57 -08:00
parent 573e797c1b
commit 2c0667d878
4 changed files with 133 additions and 105 deletions

View File

@@ -1,6 +1,6 @@
body {
margin: 0;
font-family: "Lato", sans-serif;
font-family: monospace, sans-serif;
background-color: black;
color: #fef102;
}
@@ -8,13 +8,14 @@ body {
p {
font-family: monospace;
font-weight: 400;
font-size: 14px;
font-size: 18px;
color: whitesmoke;
text-wrap: balance;
overflow-wrap: break-word;
}
h3 {
font-size: 15.5px;
font-size: 20px;
font-family: monospace;
}
@@ -23,51 +24,111 @@ body {
}
.topnav {
background-color: black;
overflow: hidden;
padding-left: 10px;
background-color: #fef102;
border-radius: 0 0 5px 5px;
box-shadow: 0 0 15px #fef102;
display: flex;
align-items: center;
justify-content: center;
width: 90%;
margin: 0 auto 0 auto;
}
.topnav a {
float: left;
display: block;
color: whitesmoke;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
font-size: 20px;
}
.topnav a:hover {
background-color: black;
color: #fef102;
}
.topnav a.active {
background-color: #fef102;
color: black;
border-right: black 2px solid;
}
.topnav a.active2 {
background-color: #fef102;
color: black;
}
}
.responsive {
max-width: 94.1%;
height: auto;
margin: 10px auto 0px auto;
width: 95%;
margin: 20px auto 0px auto;
border: #fef102 solid 0px;
border-radius: 5px;
box-shadow:0 0 10px #fef102;
box-shadow:0 0 30px #fef102;
text-align: center;
display: block;
}
legend {
height: 50px;
}
input {
display: flex;
margin: 0 auto 0 auto;
}
.button {
background-color: #fef102;
color: black;
font-size: large;
font-weight: bolder;
font-family: monospace;
padding: 10px;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
margin:10px
}
.small-btn {
width: 50px;
height: 25px;
}
.medium-btn {
width: 70px;
height: 30px;
}
.big-btn {
width: 100px;
height: 60px;
}
.container {
width: 90%;
margin: 0 auto 0 auto;
}
::-webkit-input-placeholder {
color: #222;
}
:-moz-placeholder { /* Firefox 18- */
color: #222;
}
::-moz-placeholder { /* Firefox 19+ */
color: #222;
}
:-ms-input-placeholder {
color: #222;
}
.diagram {
width: 100%;
margin-top: 20px;
width: 98%;
margin: 20px auto 0 auto;
}
.fourohfour {
@@ -80,14 +141,13 @@ body {
.subtitle {
font-family: monospace;
font-size: 16px
font-weight: 800;
border: #fef102 solid 0px;
border-radius: 0 0 5px 5px;
box-shadow: 0 0 10px #fef102;
box-shadow: 0 0 15px #fef102;
width: 70%;
height: auto;
margin: -15px auto 30px auto;
margin: -23px auto 30px auto;
display: block;
text-align:center;
padding: 0 40px 0 40px;
@@ -124,21 +184,21 @@ body {
.community {
background-color:black;
padding:-10px 16px 64px 16px;
max-width:700px;
max-width:500px;
margin:0 auto;
}
.community a {
border-bottom:1px solid black
border-bottom:1px solid black;
}
.community h2 {
text-align:center
text-align:center;
}
.community-subheading {
line-height:1.4em;
text-align:center
text-align:center;
}
.community-content {
@@ -148,90 +208,64 @@ body {
.community-row {
padding:20px;
margin: 5px 0 5px 0;
width: 400px;
margin: 5px auto 5px auto;
display:flex;
flex-direction: column;
border: solid 1px silver;
justify-content: center;
}
.community-row-img {
height:80px;
width:80px;
margin-right:16px;
border-radius:15px
border-radius:15px;
}
.community-row-content {
margin-top:4px
margin-top:4px;
}
.community-row-heading {
font-size:18px;
font-weight:bold;
margin-bottom:4px
margin-bottom:4px;
}
.community-row-desc {
line-height:1.4em;
margin-bottom:8px
margin-bottom:8px;
}
.community-row-category {
color:#6F6F6F;
font-size:12px
font-size:12px;
}
.footer {
text-align: center;
margin: 0 auto;
}
.topnav {
display: block;
justify-content: center;
margin: 0 auto;
overflow: hidden;
background-color: #fef102;
width: 87%;
border-radius: 0 0 5px 5px;
box-shadow: 0 0 10px #fef102;
}
/* Add this to your existing CSS */
.topnav a {
display: none; /* Hide links by default */
}
.topnav.responsive a {
display: block; /* Show links when responsive class is added */
}
.topnav .icon {
display: block; /* Show the hamburger icon */
}
/* Show links in the topnav by default on larger screens */
@media screen and (min-width: 601px) {
.topnav a {
display: block;
color: whitesmoke;
text-align: center;
padding: 14px 16px;
text-decoration: none;
display: block; /* Show links on larger screens */
}
.topnav a:hover {
background-color: black;
color: #fef102;
}
.topnav .icon {
display: none;
display: none; /* Hide the hamburger icon on larger screens */
}
@media screen and (max-width: 600px) {
.topnav a {
display: none;
}
.topnav a.icon {
float: none;
display: block;
}
.topnav .icon:hover {
color: #fef102;
}
.topnav.responsive {
position: relative;
}
.topnav.responsive a {
display: block;
float: none;
}
}
}