Skip to content

Commit

Permalink
Create style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Biielik authored Apr 19, 2024
1 parent 490b047 commit f800e45
Showing 1 changed file with 122 additions and 0 deletions.
122 changes: 122 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
* {
margin: 0;
justify-content: center;
text-align: center;
user-select: none;
}

body {
background-image: radial-gradient(
circle,
rgba(0, 60, 255, 0.5),
rgba(0, 217, 255, 0.4),
rgba(68, 0, 255, 0.5),
rgba(217, 0, 255, 0.5)
);
background-size: 400%;
animation: gradient 300s infinite;
/* height: 1000vh; */
}

h1,h2 {
width: 100%;
}

h2 {
text-align: left;
}

nawigacja {
position: absolute;
top: -4px;
border-radius: 10px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
column-gap: 10px;
border: 3px rgba(255, 255, 255, 0.3) solid;
padding: 10px;
backdrop-filter: sepia(40%);
box-shadow: 19px 8px 10px rgba(0, 0, 0, 0.3);
}

nawigacja a {
font-weight: 650;
text-decoration: none;
color: white;
}

nazwa {
position: absolute;
left: 5px;
font-size: 40px;
font-weight: 700;
background-image: linear-gradient(45deg, #f3ea43, #af4261);
background-clip: text;
color: transparent;
}

pomoc {
position: absolute;
right: 10px;
top: 10px;
}

bloki {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
margin-left: 200px;
margin-right: 200px;
margin-top: 60px;
}

div {
border: 5px rgba(0, 0, 0, 0.1) outset;
box-shadow: 19px 8px 10px rgba(0, 0, 0, 0.3);
border-radius: 10px;
margin: 5px;
padding: 3px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
row-gap: 10px;
column-gap: 30px;
box-sizing: border-box;
}

#S:hover + #silnik {
display: block;
}

#Plugins:hover + #pluginy {
display: block;
}

hover {
display: none;
background-color: gray;
z-index: 1;
position: absolute;
}

footer {
border-top: #af4261 1px solid;
width: 100%;
padding: 1em;
bottom: 0px;
left: 0px;
position: fixed;
z-index: 100;
backdrop-filter: blur(5px);
}

@keyframes gradient {
0% {
background-position: 0% 0%;
}
50% {
background-position: 100% 100%;
}
100% {
background-position: 0% 0%;
}
}

0 comments on commit f800e45

Please sign in to comment.