Add pedoman content and editor assets
This commit is contained in:
175
pedoman/css/login.css
Normal file
175
pedoman/css/login.css
Normal file
@@ -0,0 +1,175 @@
|
||||
@import 'https://fonts.googleapis.com/css?family=Poppins:300,
|
||||
400,
|
||||
500,
|
||||
600,
|
||||
700';
|
||||
|
||||
html,
|
||||
body {
|
||||
min-height: 100vh;
|
||||
min-width: 100vw;
|
||||
font-family: 'comfortaa', sans-serif;
|
||||
background: #fafafa;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
a,
|
||||
a:hover,
|
||||
a:focus {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
border-bottom: 1px dashed #ddd;
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
i,
|
||||
span {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#content {
|
||||
background-color: #eaf0f1;
|
||||
/* padding: 20px; */
|
||||
min-height: 100vh;
|
||||
width: 100vw;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
padding: 15px 10px;
|
||||
background: #286090;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.navbar-btn {
|
||||
box-shadow: none;
|
||||
outline: none !important;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.title {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.title img {
|
||||
height: 55px;
|
||||
margin-left: 20px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.title h1 {
|
||||
font-family: 'Merriweather', sans-serif;
|
||||
margin-left: 5px;
|
||||
color: #fff;
|
||||
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
|
||||
font-size: 40px;
|
||||
}
|
||||
|
||||
#sidebarCollapse {
|
||||
margin: 0px;
|
||||
background-color: #1c90b3;
|
||||
}
|
||||
|
||||
/* form.html, formmts.html */
|
||||
|
||||
.container-fluid {
|
||||
/* min-height: 100vh; */
|
||||
font-family: 'comfortaa', sans-serif;
|
||||
}
|
||||
|
||||
.container-fluid h2 {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.container-fluid .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);
|
||||
}
|
||||
.container-fluid 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: 100%;
|
||||
max-width: 400px;
|
||||
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;
|
||||
}
|
||||
|
||||
.container-fluid form table tr td input[type='radio'] {
|
||||
transform: scale(1.2);
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.container-fluid 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;
|
||||
}
|
||||
.input-group {
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
}
|
||||
Reference in New Issue
Block a user