mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-14 00:39:16 +00:00
Updated files
This commit is contained in:
293
tools/website/css/style.css
Normal file
293
tools/website/css/style.css
Normal file
@ -0,0 +1,293 @@
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #000;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
background-position: center;
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
z-index: -1;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: rgb(40, 40, 40);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #888;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: #555;
|
||||
}
|
||||
|
||||
.on-background-text {
|
||||
color: #f2f2f2;
|
||||
}
|
||||
|
||||
.move-to-middle {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.move-to-left {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.move-to-right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
background-color: rgb(15, 15, 15, 0.8);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 101;
|
||||
}
|
||||
|
||||
.navbar a {
|
||||
float: left;
|
||||
display: block;
|
||||
color: #f2f2f2;
|
||||
text-align: center;
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.navbar a:hover {
|
||||
background-color: rgb(80, 0, 100, 0.5);
|
||||
}
|
||||
|
||||
.navbar a.active {
|
||||
background-color: rgb(100, 0, 180, 0.5);
|
||||
}
|
||||
|
||||
.navbar a.active_f {
|
||||
background-color: rgb(100, 0, 180, 0.5);
|
||||
}
|
||||
|
||||
.navbar .icon {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.content-buttons {
|
||||
background-color: rgb(20, 20, 20);
|
||||
}
|
||||
|
||||
.button {
|
||||
background-color: rgb(100, 0, 180, 0.5);
|
||||
/* #964caf; */
|
||||
border: none;
|
||||
color: white;
|
||||
padding: 15px 32px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
background-color: rgb(80, 0, 100, 0.5);
|
||||
/* #872ea5; */
|
||||
color: white;
|
||||
}
|
||||
|
||||
.header {
|
||||
background-color: rgb(15, 15, 15, 0.8);
|
||||
color: #f2f2f2;
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
font-size: 35px;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
backdrop-filter: blur(5px);
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
background-color: rgb(15, 15, 15, 0.8);
|
||||
color: white;
|
||||
overflow: hidden;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
z-index: 104;
|
||||
backdrop-filter: blur(5px);
|
||||
}
|
||||
|
||||
.round-border-low {
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.round-border-med {
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.round-border-high {
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
.panel {
|
||||
background: rgb(40, 40, 40, .8);
|
||||
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.80);
|
||||
overflow: hidden;
|
||||
backdrop-filter: blur(5px);
|
||||
}
|
||||
|
||||
#backToTopBtn {
|
||||
backdrop-filter: blur(5px);
|
||||
display: none;
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
right: 30px;
|
||||
z-index: 105;
|
||||
border: none;
|
||||
outline: none;
|
||||
background-color: rgb(100, 0, 180, 0.5);
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
padding: 15px;
|
||||
border-radius: 10px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
#backToTopBtn:hover {
|
||||
background-color: rgb(80, 0, 100, 0.5);
|
||||
}
|
||||
|
||||
.stroketext {
|
||||
text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
|
||||
}
|
||||
|
||||
.parallax {
|
||||
min-height: 1000px;
|
||||
background-attachment: fixed;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
background: rgb(255, 255, 255);
|
||||
padding: 50px;
|
||||
text-align: center;
|
||||
background-attachment: fixed;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.wrapper .icon {
|
||||
position: relative;
|
||||
background-color: #ffffff;
|
||||
border-radius: 50%;
|
||||
margin: 40px;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
line-height: 50px;
|
||||
font-size: 80px;
|
||||
display: inline-block;
|
||||
align-items: center;
|
||||
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
|
||||
cursor: pointer;
|
||||
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.wrapper .tooltip {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
line-height: 1.5;
|
||||
font-size: 14px;
|
||||
background-color: #ffffff;
|
||||
color: #ffffff;
|
||||
padding: 5px 8px;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
||||
}
|
||||
|
||||
.wrapper .tooltip::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
height: 8px;
|
||||
width: 8px;
|
||||
background-color: #ffffff;
|
||||
bottom: -3px;
|
||||
left: 50%;
|
||||
transform: translate(-50%) rotate(45deg);
|
||||
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
||||
}
|
||||
|
||||
.wrapper .icon:hover .tooltip {
|
||||
top: -45px;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.wrapper .icon:hover span,
|
||||
.wrapper .icon:hover .tooltip {
|
||||
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.wrapper .whatsapp:hover,
|
||||
.wrapper .whatsapp:hover .tooltip,
|
||||
.wrapper .whatsapp:hover .tooltip::before {
|
||||
background-color: #25D366;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.wrapper .twitter:hover,
|
||||
.wrapper .twitter:hover .tooltip,
|
||||
.wrapper .twitter:hover .tooltip::before {
|
||||
background-color: #46c1f6;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.wrapper .instagram:hover,
|
||||
.wrapper .instagram:hover .tooltip,
|
||||
.wrapper .instagram:hover .tooltip::before {
|
||||
background-color: #e1306c;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.wrapper .github:hover,
|
||||
.wrapper .github:hover .tooltip,
|
||||
.wrapper .github:hover .tooltip::before {
|
||||
background-color: #333333;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.wrapper .youtube:hover,
|
||||
.wrapper .youtube:hover .tooltip,
|
||||
.wrapper .youtube:hover .tooltip::before {
|
||||
background-color: #de463b;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.gradienttext {
|
||||
color: #eee;
|
||||
text-transform: capitalize;
|
||||
background: linear-gradient(-45deg, #09f1b8, #00a2ff, #920077, #fed90f);
|
||||
background-size: 100% 100%;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-stroke: 10px transparent;
|
||||
}
|
Reference in New Issue
Block a user