Skip to content

Commit

Permalink
feat:add phase.css folder
Browse files Browse the repository at this point in the history
  • Loading branch information
astro committed Nov 15, 2024
1 parent f75259e commit 452839b
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions phase.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}

.root{
--black: #171321;
--dkblue: #0d314b;
--plum: #4b0d49;
--hotmag: #ff17e4;
--aqua: #86fbfb;
--white: #f7f8fa;
--font-size: 1.3rem;
}

body{
background: radial-gradient(circle, rgba(162,50,20,1) 0%, rgba(16,4,103,1) 100%);;
color: rgb(248, 253, 253);
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

a{
color: var();
text-decoration: none;
}
nav ul li{
list-style: none;
}
nav ul{
display: flex;
justify-content: center;
align-items: center;
gap: 300px;
}
li a h1{
color: var(--white)
}

0 comments on commit 452839b

Please sign in to comment.