Skip to content

Commit

Permalink
Create style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
PepeOnGithub authored Nov 15, 2023
1 parent 61aaf4e commit 7d65ae0
Showing 1 changed file with 95 additions and 0 deletions.
95 changes: 95 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
body {
font-family: Ubuntu, Open Sans, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
color: #333;
height: 100%;
width: 100%;
}

h1 {
text-align: center;
margin: 20px;
font-size: 2.5rem;
}

form {
height: 100vh;
width: 100%;
padding: 20px;
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
overflow-y: auto;
}

label {
display: block;
margin-bottom: 10px;
font-weight: bold;
}

input[type="text"],
textarea {
display: block;
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin-bottom: 20px;
}

.info-icon {
font-size: 16px;
color: #999;
margin-left: 5px;
position: relative;
top: -1px;
}

.info-text {
display: none;
position: absolute;
background-color: #333;
color: #fff;
padding: 5px;
border-radius: 5px;
z-index: 1;
top: 25px;
left: 5px;
}

.info-icon:hover .info-text {
display: block;
}

#manifest-button {
display: block;
width: 100%;
padding: 10px;
background-color: #2196F3;
color: #fff;
font-size: 18px;
font-weight: bold;
text-decoration: none;
border-radius: 5px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
transition: background-color 0.2s ease;
}

#manifest-button:hover {
background-color: #0c7cd5;
}

.form-spacing {
margin-top: 20px;
}

.form-spacing label {
margin-bottom: 5px;
}

.form-spacing input[type="text"],
.form-spacing textarea {
margin-bottom: 10px;
}

0 comments on commit 7d65ae0

Please sign in to comment.