Spaces:
Running
Running
File size: 1,414 Bytes
452c431 208e6cd 452c431 208e6cd 452c431 208e6cd 452c431 208e6cd 452c431 208e6cd 452c431 208e6cd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | 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;
} |