CSSConf EU

Developer
Size
4,125 Kb
Views
18,216

How do I make an cssconf eu?

We're doing it again! September 2014, Berlin, Germany. What is a cssconf eu? How do you make a cssconf eu? This script and codes were developed by Daniel Gooß on 10 November 2022, Thursday.

CSSConf EU Previews

CSSConf EU - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>CSSConf EU</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ @import url(https://fonts.googleapis.com/css?family=Arvo:400,700);
body { font-family: 'Arvo', Arial, sans-serif; -webkit-font-smoothing: antialiased;
}
@-webkit-keyframes showtext { 0% { background-color: #fff; background-size: 0 100%; } 50% { background-color: #fff; background-size: 200% 100%; } 100% { background-color: #222; background-size: 300% 100%; }
}
.claim { color: #222; font-size: 4em; font-weight: bold; text-transform: uppercase; text-align: center; background: linear-gradient(90deg, #222, #222, #fff) no-repeat; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-size: 100% 100%; transition: background-size 1s ease; animation: showtext 10s ease both;
}
.boxes { position: relative; width: 300px; height: 300px; padding: 0; margin: 100px auto 100px; list-style-type: none; cursor: wait;
}
.boxes li { position: absolute; top: 0; left: 0; width: 100%; height: 100%; box-sizing: border-box; border-radius: 10%; background-color: #f1614b; text-align: center; color: #fff; transform-origin: 5% 95%; transition: transform 0.5s ease-out;
}
.boxes li::before { content: ''; display: inline-block; height: 100%; width: 0; vertical-align: middle;
}
.boxes li:first-child { z-index: 1; background-color: #3678ae; transform: translate3d(0%, 0, 0) rotate3d(0, 0, 1, -5deg); transition: transform 0.5s ease-out;
}
.boxes li:last-child { z-index: -1; background-color: #83d0c2; text-align: center; font-size: 0; line-height: 0; transform: translate3d(0%, 0, 0) rotate3d(0, 0, 1, 5deg);
}
.boxes li h1,
.boxes li .content,
.boxes li img { display: inline-block; vertical-align: middle;
}
.boxes:hover { margin-bottom: 400px;
}
.boxes:hover li:first-of-type { transform: translate3d(0%, 0, 0) rotate3d(0, 0, 1, 135deg); transition-timing-function: cubic-bezier(0.6, 3, 0.5, 0.8); transition-duration: 1s;
}
.boxes:hover li:nth-of-type(2) { transform: translate3d(0%, 0, 0) rotate3d(0, 0, 1, 130deg); transition-timing-function: cubic-bezier(0.6, 3, 0.5, 0.8); transition-duration: 1s; transition-delay: 2s;
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <p class="claim">We're doing it again!</p>
<ul class="boxes"> <li> <h1>CSSConf EU</h1> </li> <li> <div class="content"> <h2>September 2014</h2> <p>Berlin, Germany</p> </div> </li> <li> <img src="http://2014.cssconf.eu/img/thank-you.svg" /> </li>
</ul>
</body>
</html>

CSSConf EU - Script Codes CSS Codes

@import url(https://fonts.googleapis.com/css?family=Arvo:400,700);
body { font-family: 'Arvo', Arial, sans-serif; -webkit-font-smoothing: antialiased;
}
@-webkit-keyframes showtext { 0% { background-color: #fff; background-size: 0 100%; } 50% { background-color: #fff; background-size: 200% 100%; } 100% { background-color: #222; background-size: 300% 100%; }
}
.claim { color: #222; font-size: 4em; font-weight: bold; text-transform: uppercase; text-align: center; background: linear-gradient(90deg, #222, #222, #fff) no-repeat; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-size: 100% 100%; transition: background-size 1s ease; animation: showtext 10s ease both;
}
.boxes { position: relative; width: 300px; height: 300px; padding: 0; margin: 100px auto 100px; list-style-type: none; cursor: wait;
}
.boxes li { position: absolute; top: 0; left: 0; width: 100%; height: 100%; box-sizing: border-box; border-radius: 10%; background-color: #f1614b; text-align: center; color: #fff; transform-origin: 5% 95%; transition: transform 0.5s ease-out;
}
.boxes li::before { content: ''; display: inline-block; height: 100%; width: 0; vertical-align: middle;
}
.boxes li:first-child { z-index: 1; background-color: #3678ae; transform: translate3d(0%, 0, 0) rotate3d(0, 0, 1, -5deg); transition: transform 0.5s ease-out;
}
.boxes li:last-child { z-index: -1; background-color: #83d0c2; text-align: center; font-size: 0; line-height: 0; transform: translate3d(0%, 0, 0) rotate3d(0, 0, 1, 5deg);
}
.boxes li h1,
.boxes li .content,
.boxes li img { display: inline-block; vertical-align: middle;
}
.boxes:hover { margin-bottom: 400px;
}
.boxes:hover li:first-of-type { transform: translate3d(0%, 0, 0) rotate3d(0, 0, 1, 135deg); transition-timing-function: cubic-bezier(0.6, 3, 0.5, 0.8); transition-duration: 1s;
}
.boxes:hover li:nth-of-type(2) { transform: translate3d(0%, 0, 0) rotate3d(0, 0, 1, 130deg); transition-timing-function: cubic-bezier(0.6, 3, 0.5, 0.8); transition-duration: 1s; transition-delay: 2s;
}
CSSConf EU - Script Codes
CSSConf EU - Script Codes
Home Page Home
Developer Daniel Gooß
Username daniel_gooss
Uploaded November 10, 2022
Rating 3
Size 4,125 Kb
Views 18,216
Do you need developer help for CSSConf EU?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Daniel Gooß (daniel_gooss) Script Codes
Create amazing sales emails with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!