Skip to content

Commit

Permalink
Create @main.css
Browse files Browse the repository at this point in the history
  • Loading branch information
p0xx authored Nov 28, 2023
1 parent 8366714 commit 3fb4472
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions public/css/@main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
@import url(games.css);
@import url(home.css);
@import url(navigation.css);
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

html,
body {
margin: 0;
padding: 0;
min-height: 100vh;
font-family: 'Lato';
user-select: none;
scrollbar-color: white;
}

a {
text-decoration: none;
color: blue;
}

.buttons {
display: inline-block;
padding: 10px 20px;
background-color: #ddd;
color: #333;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s;
}

.buttons:hover {
background-color: #bbb;
}

.game-count {
border-radius: 15px;
padding: 12px;
background-color: #4287f5;
margin: 3em 3em 0;
display: inline-block;
cursor: pointer;
transition: .3s, .5s ease-in-out;
}

.game-count:hover {
background-color: #3d7bdf;
}

.game-count:active {
transform: rotate3d(1, 1, 1, 360deg);
}


/* Can't make my mind up mabye, 'https://fonts.google.com/specimen/Inter'? */

0 comments on commit 3fb4472

Please sign in to comment.