sf-88e / style.css
Passpass119's picture
Add 3 files
208e6cd verified
body {
font-family: sans-serif;
line-height: 1.4;
color: #333;
margin: 0;
padding: 0;
}
h1 {
text-align: center;
font-size: 48px;
margin: 20px 0;
}
h2 {
text-align: center;
font-size: 36px;
margin: 20px 0;
}
p {
text-align: justify;
padding: 20px;
}
img {
width: 100%;
height: auto;
}
.steps {
list-style: none;
padding: 0;
margin: 20px 0;
}
.step {
margin: 20px 0;
padding: 20px;
box-shadow: 0 0 10px #ccc;
transition: all 0.3s ease-in-out;
&:hover {
transform: scale(1.05);
}
}
.step-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.step-name {
width: 100%;
height: 32px;
padding: 20px;
font-size: 36px;
background-color: #eee;
border: none;
border-radius: 10px;
}
.step-description {
width: 100%;
height: 50px;
padding: 20px;
font-size: 24px;
background-color: #eee;
border: none;
border-radius: 10px;
}
.step-buttons {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
}
.btn {
appearance: none;
background-color: #007bff;
color: #fff;
cursor: pointer;
padding: 10px 20px;
border: none;
border-radius: 10px;
transition: all 0.3s ease-in-out;
&:hover {
background-color: #0069d9;
}
}
.btn-primary {
background-color: #007bff;
color: #fff;
margin-right: 20px;
}
.btn-secondary {
background-color: #6c757d;
color: #fff;
margin-left: 20px;
}