Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
philffm committed Jul 7, 2024
1 parent e688a0f commit 8c11c49
Showing 1 changed file with 99 additions and 51 deletions.
150 changes: 99 additions & 51 deletions bookmarklet-generator/styles.css
Original file line number Diff line number Diff line change
@@ -1,65 +1,113 @@
@import url('https://fontshare.com/css?f[]=inter@700,400');

body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
color: #333;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: 'Inter', sans-serif;
background-color: #121212;
color: #e0e0e0;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
box-sizing: border-box;
}

.container {
background: #1e1e1e;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
padding: 20px;
max-width: 500px;
width: 100%;
box-sizing: border-box;
}

h1 {
color: #bb86fc;
text-align: center;
margin-bottom: 20px;
font-size: 24px;
}

label {
display: block;
margin: 15px 0 5px;
color: #bb86fc;
font-weight: bold;
}

.light {
color: #e0e0e0;
}

input, textarea {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: 1px solid #333;
border-radius: 6px;
font-size: 16px;
background-color: #2b2b2b;
color: #e0e0e0;
box-sizing: border-box;
}

textarea {
height: 150px;
resize: vertical;
}

button {
width: 100%;
padding: 12px;
background-color: #bb86fc;
color: #121212;
border: none;
border-radius: 6px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease;
margin-bottom: 10px;
}

button:hover {
background-color: #9c6efb;
}

.output {
margin-top: 20px;
word-wrap: break-word;
background: #2b2b2b;
padding: 10px;
border-radius: 6px;
border: 1px solid #333;
}

@media (max-width: 600px) {
body {
padding: 10px;
}

.container {
background: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
max-width: 500px;
width: 100%;
padding: 15px;
}

h1 {
color: #007bff;
text-align: center;
}
label {
display: block;
margin: 15px 0 5px;
color: #007bff;
}
.light{
color: #333;
font-size: 20px;
}

input, textarea {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
}
textarea {
height: 100px;
font-size: 14px;
}

button {
width: 100%;
padding: 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 4px;
font-size: 18px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
font-size: 16px;
}

.output {
margin-top: 20px;
word-wrap: break-word;
background: #e9ecef;
padding: 10px;
border-radius: 4px;
border: 1px solid #ccc;
padding: 8px;
}


}

0 comments on commit 8c11c49

Please sign in to comment.