Skip to content

Commit

Permalink
Update and rename .txt to styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
TMHSDigital authored Jul 9, 2024
1 parent 93082bd commit 00637ff
Show file tree
Hide file tree
Showing 2 changed files with 140 additions and 1 deletion.
1 change: 0 additions & 1 deletion css/.txt

This file was deleted.

140 changes: 140 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
body {
font-family: 'Roboto', sans-serif;
background-color: #000;
color: #fff;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}

.container {
background-color: rgba(16, 24, 39, 0.8);
padding: 2rem;
border-radius: 10px;
box-shadow: 0 0 20px #00fff2;
max-width: 600px;
width: 100%;
}

.neon-text {
font-family: 'Orbitron', sans-serif;
color: #fff;
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #00fff2, 0 0 35px #00fff2, 0 0 40px #00fff2;
text-align: center;
margin-bottom: 2rem;
}

nav {
display: flex;
justify-content: center;
margin-bottom: 2rem;
}

nav a {
color: #00fff2;
text-decoration: none;
margin: 0 1rem;
font-weight: bold;
transition: color 0.3s ease;
}

nav a:hover {
color: #fff;
text-shadow: 0 0 5px #00fff2;
}

.content {
display: flex;
flex-direction: column;
gap: 1rem;
}

.input-group {
display: flex;
flex-direction: column;
}

label {
margin-bottom: 0.5rem;
color: #00fff2;
}

input[type="file"], input[type="number"] {
background-color: #1f2937;
border: 1px solid #374151;
color: #fff;
padding: 0.5rem;
border-radius: 5px;
}

.tech-button {
background: linear-gradient(45deg, #00a3ff, #00fff2);
color: #000;
border: none;
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
text-decoration: none;
}

.tech-button:hover {
background: linear-gradient(45deg, #00fff2, #00a3ff);
box-shadow: 0 0 10px #00fff2;
}

.instructions {
text-align: center;
color: #9ca3af;
font-size: 0.9rem;
}

.welcome-text {
font-size: 1.2rem;
text-align: center;
margin-bottom: 1rem;
}

.services-list {
list-style-type: none;
padding: 0;
}

.services-list li {
margin-bottom: 1rem;
}

.services-list a {
color: #00fff2;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}

.services-list a:hover {
color: #fff;
text-shadow: 0 0 5px #00fff2;
}

.cta-text {
text-align: center;
margin-top: 2rem;
}

.cta-text a {
color: #00fff2;
text-decoration: none;
font-weight: bold;
}

.cta-text a:hover {
color: #fff;
text-shadow: 0 0 5px #00fff2;
}

0 comments on commit 00637ff

Please sign in to comment.