50 lines
926 B
SCSS
Executable File
50 lines
926 B
SCSS
Executable File
////////////////////////////////// Container
|
|
|
|
.pp-button {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 10px 20px;
|
|
border: none;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
|
|
&:hover {
|
|
background-color: #e5e5e5;
|
|
}
|
|
}
|
|
|
|
.pp-input-wrapper label.pp-button-upload {
|
|
// display: inline-block;
|
|
padding: 8px 12px;
|
|
color: white;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
|
|
&:active {
|
|
background-color: #3e8e41;
|
|
}
|
|
}
|
|
|
|
.btn-save {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 13px 20px;
|
|
border: none;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
color: $white;
|
|
}
|
|
|
|
.btn-reset {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 13px 20px;
|
|
border: none;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
color: $black;
|
|
}
|