Skip to content

Commit

Permalink
Update just-styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
bbauska authored Aug 22, 2024
1 parent 1ede4ad commit 22aea05
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions css/just-styles.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
/* just-styles.css for cellardoor.bauska.org */
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: 'Quicksand', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
height: 100vh;
color: black;
}

#time {
font-size: 8rem;
}

h1 {
margin-bottom: 3rem;
}

h2 {
margin-bottom: 0.5rem;
opacity: 0.6;
}

@media (max-width: 700px) {
#time {
font-size: 6rem;
}
}
<!-- above from 8/22/24 -->

/* horizontal line */
hr {
Expand Down

0 comments on commit 22aea05

Please sign in to comment.