Skip to content

Commit

Permalink
added basic styling
Browse files Browse the repository at this point in the history
  • Loading branch information
SprihaAnand committed Oct 26, 2022
1 parent d950cbc commit f7ed217
Showing 1 changed file with 50 additions and 34 deletions.
84 changes: 50 additions & 34 deletions docs/style.css
Original file line number Diff line number Diff line change
@@ -1,65 +1,81 @@
html {
scroll-behavior: smooth;
scroll-behavior: smooth;
background-color: #FAF7F0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
color: #7c91fa;
}

p {
color: #01302a;
}

#product-hunt {
margin-top: 1rem;
margin-top: 1rem;
}

#link-snippet-headline {
margin: 1rem 2.5rem 1rem 0;
margin: 1rem 2.5rem 1rem 0;
}


/* Make the feedback Emoji appear next to the button */

#copy-button {
position: relative;
margin-right: 2px;
overflow: visible;
position: relative;
margin-right: 2px;
overflow: visible;
}

#copy-button-feedback {
position: absolute;
left: -2rem;
display: inline-block;
transform: scale(1.3);
position: absolute;
left: -2rem;
display: inline-block;
transform: scale(1.3);
}

#link-snippet-container {
overflow: hidden;
display: grid;
display: -ms-grid;
-ms-grid-columns: 1fr;
overflow: hidden;
display: grid;
display: -ms-grid;
-ms-grid-columns: 1fr;
}

#link-snippet-container > pre {
overflow: auto;
grid-column: 1;
grid-row: 1;
transition: transform 220ms cubic-bezier(0.175, 0.885, 0.32, 1) 220ms;
#link-snippet-container>pre {
overflow: auto;
grid-column: 1;
grid-row: 1;
transition: transform 220ms cubic-bezier(0.175, 0.885, 0.32, 1) 220ms;
}

#link-snippet-container > pre[hidden] {
display: block;
visibility: hidden;
transform: scale(0);
transition: transform 220ms cubic-bezier(0.175, 0.885, 0.32, 1), visibility 0ms 220ms;
#link-snippet-container>pre[hidden] {
display: block;
visibility: hidden;
transform: scale(0);
transition: transform 220ms cubic-bezier(0.175, 0.885, 0.32, 1), visibility 0ms 220ms;
}

#theme-form > label:not(:last-of-type) {
margin-right: 1rem;
#theme-form>label:not(:last-of-type) {
margin-right: 1rem;
}

#version-info th {
width: 35%;
width: 35%;
}

body > footer {
text-align: right;
body>footer {
text-align: right;
}

.row {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}

0 comments on commit f7ed217

Please sign in to comment.