Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
- HTML content. To learn how to do something, just try searching Google for questions like
- "how to change link color." */
- body {
- background-color: white;
- color: black;
- @font-face {
- font-family: 'rainyhearts'; /*a name to be used later*/
- src: url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap'); /*URL to font*/
- }
- }
- /* Start https://www.cursors-4u.com */
- *{cursor: url(https://cur.cursors-4u.net/nature/nat-10/nat997.cur), auto !important;}
- /* End https://www.cursors-4u.com */
- /*Grid Box*/
- .contaner {
- display: grid;
- grid-template-areas:
- "topbar topbar topbar"
- "sidebar content content"
- "footer footer footer";
- /*Sets sizes of columns*/
- grid-template-columns: 1fr 3fr 1fr;
- grid-template-rows: 50px auto 70px;
- /*Centers the children*/
- align-items: center;
- justify-items: center;
- }
- .header {grid-area: topbar;}
- .article {grid-area: content;}
- .nav {grid-area: sidebar;}
- .footer {grid-area: footer;}
- /*To advoid dulplication on grids*/
- .contaner{
- grid-template-columns: repeat(3, 1fr);
- grid-auto-rows: minmax(50, auto)
- }
- /*Status Cafe*/
- #statuscafe {
- padding: .5em;
- background-color: azure;
- border: 1px solid midnightblue;
- }
- #statuscafe-username {
- margin-bottom: .5em;
- }
- #statuscafe-content {
- margin: 0 1em 0.5em 1em;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement