Skip to content

Commit

Permalink
Create t.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Rhine-Ho committed Oct 7, 2022
1 parent 2016913 commit b5bf63e
Showing 1 changed file with 93 additions and 0 deletions.
93 changes: 93 additions & 0 deletions t.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");


* {
margin: 0;
padding: 0;

}

html,
body {
font-size: 12px;
font-family: sans-serif;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #000;
display: flex;
}



.environment {
position: fixed;
width: 100%;
height: 100%;
box-shadow: inset 0px 0px 600px 10px;
filter: opacity(70%);
pointer-events: none;
z-index: auto;
}

.playground {
position: fixed;
width: 100vw;
height: 100vh;
display: flex;
top: 0;
left: 0;
display: flex;
flex-wrap: nowrap;
flex-direction: column;
justify-content: flex-end;
align-items: center;

}


.h {
font-size: 5rem;
display: flex;
box-sizing: border-box;

}

.h :hover {
color: #ccc;
text-shadow: 0 0 5px #f2f7f5,
0 0 25px #f2f7f5,
0 0 50px #050505,
0 0 100px #050505;
}

.home {
font-size: 20px;
position: relative;
padding: 50px auto;
z-index: index 1;
}

.home h1 {
font-size: 10rem;
font-weight: 500;
color: #222;
letter-spacing: 5px;
text-transform: uppercase;
transition: 0.2s;
}

h1 :hover {
color: #ccc;
text-shadow: 0 0 5px #f2f7f5,
0 0 25px #f2f7f5,
0 0 50px #050505,
0 0 100px #050505;

}

a {
color: white;
cursor: help;
text-decoration: none;
}

0 comments on commit b5bf63e

Please sign in to comment.