inital commit
This commit is contained in:
62
templates/template_2/eventio/eventio-HTML/styles/globals.css
Normal file
62
templates/template_2/eventio/eventio-HTML/styles/globals.css
Normal file
@@ -0,0 +1,62 @@
|
||||
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
|
||||
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
body {
|
||||
font-family: "Poppins", sans-serif;
|
||||
overflow-x: hidden !important;
|
||||
}
|
||||
|
||||
@layer components {
|
||||
.primary-color {
|
||||
@apply text-[#F112A2];
|
||||
}
|
||||
.zoom {
|
||||
@apply hover:scale-150 transition-all duration-1000;
|
||||
}
|
||||
.imgzoom{
|
||||
@apply rounded-lg shadow-md hover:scale-125 transition-all duration-700
|
||||
}
|
||||
.pinkhover {
|
||||
@apply hover:bg-[#F112A2] hover:text-white transition-colors duration-300;
|
||||
}
|
||||
.btnhover {
|
||||
@apply hover:shadow-[inset_13rem_0_0_0] hover:shadow-[#5A00CC] duration-[400ms,700ms] transition-[color,box-shadow]
|
||||
}
|
||||
|
||||
}
|
||||
.card:hover .card-inner {
|
||||
opacity: 100;
|
||||
transform: translateY(-7px);
|
||||
transition: all 0.5s ease-in;
|
||||
}
|
||||
|
||||
.card-inner {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
opacity: 0;
|
||||
transition: all 0.5s ease-in;
|
||||
}
|
||||
|
||||
.bg-conference {
|
||||
background-size: 100%;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
border-bottom: 1px solid #8243d1;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.navitem:hover .dropdown {
|
||||
display: flex;
|
||||
}
|
||||
.dropdown {
|
||||
display: flex;
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user