<div class="container">
<div class="circleOne">
<div class="arrow one"></div>
</div>
<div class="circleTwo">
<div class="arrow two"></div>
</div>
<p class="sig">Fun CSS Arrows By | <span>Rochelle Burrows</span></p>
</div>
// Reset
*,::before,::after {
padding: 0;
margin: 0;
box-sizing: border-box;
}
// Colours
$Arrow: #ea9010;
$Circle: #c9e3ac;
$Arrow-hover: #f79c1d;
//$Arrow-hover: #ed7600;
.container {
min-height: 100vh;
min-width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #edf1c9;
position: relative;
}
.circleOne {
width: 110px;
height: 110px;
background-color: $Circle;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
margin: 0 30px;
transition: 300ms ease-out;
box-shadow: 0 0 4px 1px rgba(55, 55, 31,0.2);
}
.circleTwo {
width: 110px;
height: 110px;
background-color: $Circle;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
margin: 0 30px;
transition: 300ms ease-out;
box-shadow: 0 0 4px 1px rgba(55, 55, 31,0.2);
}
.arrow {
//background-color: white;
position: absolute;
left: 18%;
border-top: 10px solid $Arrow;
border-right: 10px solid $Arrow;
border-radius: 4px;
width: 50%;
height: 50%;
transform: rotate(45deg);
transition: 200ms ease-out;
}
.one {
left: 35%;
transform: rotate(225deg);
}
// ------------ Hover States
.circleOne,.circleTwo:hover {
cursor: pointer;
}
.circleOne:hover {
transform: translateX(-10px);
background-color: #cfeab2;
}
.circleTwo:hover {
transform: translateX(10px);
background-color: #cfeab2;
}
// ------------- Arrow Hovers
.circleOne:hover .arrow {
border-top: 10px solid $Arrow-hover;
border-right: 10px solid $Arrow-hover;
}
.circleTwo:hover .arrow {
border-top: 10px solid $Arrow-hover;
border-right: 10px solid $Arrow-hover;
}
p.sig {
position: absolute;
right: 17%;
bottom: 20px;
color: #37371f;
font-family: arial;
letter-spacing: 1px;
font-size: 0.8rem;
}
.sig span {
font-weight: bold;
color: #ea9010;
}
// ---------- Media Query
@media only screen and (max-width:400px) {
.container {
min-height: 100vh;
min-width: 300px;
}
.circleOne, .circleTwo {
max-width: 90px;
max-height: 90px;
margin: 0 20px;
}
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.