Add pedoman content and editor assets

This commit is contained in:
Power BI Dev
2026-05-02 10:12:20 +07:00
parent 5fb1151fea
commit 1eddcea89f
111 changed files with 28255 additions and 0 deletions

76
pedoman/css/formmts.css Normal file
View File

@@ -0,0 +1,76 @@
.wrapper h2 {
margin: 0px;
}
.wrapper .daftarsiswa {
display: flex;
align-items: center;
justify-content: center;
padding-bottom: 50px;
padding-top: 20px;
padding-left: 20px;
padding-right: 20px;
background-color: #dbe4eb;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.wrapper form table tr td label {
margin-bottom: 5px;
margin-top: 20px;
font-size: 15px;
}
input[type='text'],
input[type='password'],
input[type='number'],
input[type='date'],
input[type='tel'],
select,
textarea {
width: 520px;
height: 35px;
padding-left: 10px;
padding-right: 10px;
padding-top: 5px;
padding-bottom: 5px;
border-radius: 4px;
border: none;
box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.1);
background-color: white;
color: black;
}
textarea {
overflow-y: scroll;
resize: none;
}
.wrapper form table tr td input[type='radio'] {
transform: scale(1.2);
margin-right: 5px;
}
.wrapper form table tr td input[type='button'],
input[type='submit'],
input[type='reset'] {
height: 38px;
background-color: #1c90b3;
border: none;
color: white;
margin-top: 20px;
margin-right: 5px;
padding: 10px;
padding-top: 7px;
padding-bottom: 9px;
line-height: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 4px;
box-shadow: 1px 1px 3px #c1c1c1;
}
input[type='text']:disabled {
background-color: slategray;
}