File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
@charset "utf-8";
/* 정렬 */
.flex {
display: flex;
align-items: center;
}
.flex-start {
display: flex;
justify-content: flex-start;
align-items: center;
}
.flex-center {
display: flex;
justify-content: center;
align-items: center;
}
.flex-between {
display: flex;
justify-content: space-between;
align-items: center;
}
.flex-end {
display: flex;
justify-content: flex-end;
align-items: center;
}
.flex-contentBox {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.flex-column {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
/* 정렬 배율 */
.flex10 {
flex: 0 0 9.2%
}
.flex20 {
flex: 0 0 19.2%
}
.flex30 {
flex: 0 0 29.2%
}
.flex40 {
flex: 0 0 39.2%
}
.flex50 {
flex: 0 0 39.2%
}
.flex60 {
flex: 0 0 59.2%
}
.flex70 {
flex: 0 0 69.2%
}
.flex80 {
flex: 0 0 79.2%
}
.flex90 {
flex: 0 0 89.2%
}
/* btn */
.small-btn {
padding: 5px 10px;
border-radius: 5px;
}
.large-btn {
width: 100%;
padding: 5px 15px;
border-radius: 5px;
}
.logout-btn {
padding: 5px 10px;
color: #aaa;
position: relative;
}
.logout-btn::before{
content: "";
width: 1px;
height: 10px;
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
background-color: #aaa;
}
.blue-btn,
.blue-border-btn:hover {
background-color: #213f99;
color: #fff;
transition: all 0.3s ease-in-out;
}
.red-btn,
.red-border-btn:hover {
background-color: #ff5d5d;
color: #fff;
transition: all 0.3s ease-in-out;
}
.green-btn,
.green-border-btn:hover {
background-color: #13833b;
color: #fff;
transition: all 0.3s ease-in-out;
}
.orange-btn,
.orange-border-btn:hover {
background-color: #f29600;
color: #fff;
transition: all 0.3s ease-in-out;
}
.darkg-btn,
.darkg-border-btn:hover {
background-color: #434343;
color: #fff;
transition: all 0.3s ease-in-out;
}
.gray-btn,
.gray-border-btn:hover {
background-color: #eee;
color: #333;
transition: all 0.3s ease-in-out;
}
.blue-border-btn {
border: 1px solid #213f99;
color: #213f99;
background-color: #fff;
}
.red-border-btn {
border: 1px solid #ff5d5d;
color: #ff5d5d;
background-color: #fff;
}
.green-border-btn {
border: 1px solid #13833b;
color: #13833b;
background-color: #fff;
}
.orange-border-btn {
border: 1px solid #f29600;
color: #f29600;
background-color: #fff;
}
.darkg-border-btn {
border: 1px solid #434343;
color: #434343;
background-color: #fff;
}
.gray-border-btn {
border: 1px solid #aaa;
color: #aaa;
background-color: #fff;
}
/* box 공통 */
.container {
width: 100%;
display: flex;
flex-direction: column;
flex-grow: 1;
}
.content-box {
width: 100%;
height: calc(100% - 66px);
}
.left-content,
.right-content {
height: 100%;
}
.content{
margin-bottom: 30px;
}
.content:last-child{
margin-bottom: 0;
}
.left-content,
.right-content,
.content {
padding: 15px;
border-radius: 10px;
background-color: #fff;
position: relative;
}
.form-box{
background-color: #edf0ff;
border: 1px solid #dbe3fb;
}
/* title 공통 */
.page-titleZone {
margin-bottom: 20px;
}
.main-title {
font-family: 'GmarketSansB';
font-size: 2rem;
color: #213f99;
}
.content-titleZone {
padding-bottom: 10px;
border-bottom: 1px solid #aaa;
margin-bottom: 15px;
}
.box-title {
font-size: 1.6rem;
font-weight: bold;
}
/* 테이블 공통 */
.list-table {
border-bottom: 1px solid #aaa;
}
.list-table th,
.list-table td {
text-align: center;
border-top: 1px solid #aaa;
}
.list-table thead tr {
background-color: #dbe3fb;
color: #213f99;
}
.list-table tbody tr:nth-child(even) {
background-color: #f4f6ff;
}
.form-table th {
color: #213f99;
text-align: center;
}
.option-table th{
text-align: left;
}
/* 서치바 공통 */
/* .table-zone */
.searchbar-zone{
margin-bottom: 10px;
}
/* 기본 서치바 */
.search-square {
position: relative;
margin-left: 5px;
}
.square-date,
.square-select {
width: 150px;
}
.square-input {
color: #646464;
padding: 6px 10px;
border-radius: 5px;
width: 300px;
transition: all ease-in-out .5s;
}
.square-input:hover,
.square-input:focus {
box-shadow: 0 0 1em #00000013;
}
.square-input:focus {
outline: none;
background-color: #f0eeee;
}
.square-input::-webkit-input-placeholder {
font-weight: 100;
color: #ccc;
}
.square-input:focus {
background-color: #f0eeee;
}
.square-button {
border: none;
margin-left: 0;
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
}
.square-button:hover {
cursor: pointer;
}
.square-icon {
color: #b4b4b4;
}
/* 상세 서치바 */
.option-searchbar{
width: 50%;
margin: 0 auto;
padding: 15px;
background-color: #f8f9fe;
border-radius: 10px;
}
/* 기타 공통 */
.coupler {
font-size: 1.3rem;
margin-left: 5px;
}