Skip to content

Commit

Permalink
Add styles to git
Browse files Browse the repository at this point in the history
  • Loading branch information
romw314 committed Nov 7, 2023
1 parent c0eb954 commit 3fdca3b
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions styles/app.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
body.enabled {
font-family: "Courier New", Helvtica, Arial, Verdata, Tahoma, serif;
background-color: black;
color: lightgreen;

*::selection {
background-color: lightgreen;
color: black;
}

a {
color: red;
text-decoration: none;
&:hover {
text-decoration: underline;
}

&::selection {
background-color: red;
color: black;
}
}

button {
border: 3px solid red;
background-color: inherit;
color: red;
margin: 2px;

&:hover {
border: 3px solid lightblue;
color: lightblue;
}

&:active {
border: 5px solid lightblue;
color: lightblue;
margin: 0;
}
}
}

0 comments on commit 3fdca3b

Please sign in to comment.