Issue
Code backup
This commit is contained in:
@@ -0,0 +1,141 @@
|
||||
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
|
||||
|
||||
@font-face {
|
||||
font-family: myFirstFont;
|
||||
src: url(icomoon.woff);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
*:focus,
|
||||
*:active {
|
||||
outline: none !important;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
html {
|
||||
background: black;
|
||||
background-attachment: fixed;
|
||||
|
||||
/* background-image: url("./Portal.svg"); */
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: auto;
|
||||
opacity: 0.1;
|
||||
}
|
||||
|
||||
body {
|
||||
display: grid;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
font-family: "Poppins", sans-serif;
|
||||
place-items: center;
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
.wrapper .icon {
|
||||
position: relative;
|
||||
background-color: #ffffff;
|
||||
border-radius: 15px;
|
||||
padding: 15px;
|
||||
margin: 10px;
|
||||
width: 100px;
|
||||
height: 50px;
|
||||
font-size: 18px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
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);
|
||||
}
|
||||
|
||||
.wrapper .tooltip {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
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 .builck:hover,
|
||||
.wrapper .builck:hover .tooltip,
|
||||
.wrapper .builck:hover .tooltip::before {
|
||||
background-color: #EFB729;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.ob-icon {
|
||||
font-family: myFirstFont;
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
.title {
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
.section {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.piedipagina {
|
||||
display: grid;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 25px;
|
||||
top: auto;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background-color: black;
|
||||
color: #ffffff;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.heading {
|
||||
width: 100%;
|
||||
height: 180px;
|
||||
}
|
||||
Reference in New Issue
Block a user