Day 330
The last of the codepen build CSS
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
/* Buttons */
.button {
background: var(--grey);
border: 0;
color: white;
padding: 10px;
border-radius:5px;
font-size: 15px;
position: relative;
}
.button--small {
font-size: 12px;
padding: 4px;
}
.button--dirty:before {
background: #ffc600;
display: block;
content: '';
height: 2px;
width: calc(100% - 6px);
position: absolute;
left: 3px;
top: 3px;
}
.settings {
padding: 5px;
background: black;
border-top: 1px solid grey;
}
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
/* Buttons */
.button {
background: var(--grey);
border: 0;
color: white;
padding: 10px;
border-radius:5px;
font-size: 15px;
position: relative;
}
.button--small {
font-size: 12px;
padding: 4px;
}
.button--dirty:before {
background: #ffc600;
display: block;
content: '';
height: 2px;
width: calc(100% - 6px);
position: absolute;
left: 3px;
top: 3px;
}
.settings {
padding: 5px;
background: black;
border-top: 1px solid grey;
}
Comments
Post a Comment