Untitled

 avatar
unknown
plain_text
2 years ago
2.6 kB
5
Indexable
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
}

.header {
    width: 100%;
    height: 100px;
    border-bottom: 1px solid #B2B2B6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 50px;
    height: 50px;
    background: url("../common_assets/img/Group 6 2.png");
    background-size: 100% 100%;
}

.part1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 0;
    border-bottom: 1px solid #B2B2B6;
}

.module {
    width: 20%;
}

.bold {
    font-weight: bold;
    padding: 5px;
}

.bold span {
    font-weight: normal;
}

.part2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.part2 table {
    width: 80%;
    border: 4px solid #B2B2B6;
    border-collapse: collapse;
    border-left: none;
    border-right: none;
}

.part2 table td {
    padding: 10px;
    border: 4px solid #B2B2B6;
    border-left: none;
    border-right: none;
}

table caption {
    text-align: left;
    padding: 20px 0;
}

.part3 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.part3 table {
    width: 80%;
    border-collapse: collapse;
    margin-top: 50px;
    border: none;
}

.part3 table td, th {
    padding: 10px;
    text-align: start;
}

.part3 table thead, tfoot {
    background: #B2B2B6;
}

hr {
    width: 80%;
    margin: 20px;
    height: 6px;
    background: #B2B2B6;
}

.part4 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.part4 h2 {
    padding-left: 10%;
    padding-top: 20px;
    align-self: start;
}

.part4 table {
    width: 80%;
    border-collapse: collapse;
    margin-top: 50px;
    border: none;
}

.part4 table td, th {
    padding: 10px;
}

.part4 table thead, tfoot {
    background: #B2B2B6;
}

input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
}

.part5 {
    width: 100%;
    display: flex;
}

.part5 table {
    width: 50%;
    border-collapse: collapse;
    margin-top: 50px;
    margin-left: 10%;
    border: none;
}
Editor is loading...