class 3-5 initial
This commit is contained in:
@@ -0,0 +1,270 @@
|
||||
@font-face {
|
||||
font-family: "GMarketSans";
|
||||
src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff") format("woff");
|
||||
font-weight: 500;
|
||||
font-display: swap;
|
||||
}
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
font-family: "GMarketSans", serif;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
background-color: #F0F0F0;
|
||||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
|
||||
background-size: 28px 28px;
|
||||
color: #0A0A0A;
|
||||
}
|
||||
|
||||
.box {
|
||||
border-radius: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.title {
|
||||
height: 32px;
|
||||
width: 100%;
|
||||
border-bottom: 1px solid #C8C8C8;
|
||||
margin-bottom: 12px;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
color: #888888;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.title::before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
width: 3px;
|
||||
height: 14px;
|
||||
background-color: #FF4B00;
|
||||
margin-right: 8px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
#header {
|
||||
width: 100%;
|
||||
height: 60px;
|
||||
background-color: #FFFFFF;
|
||||
border-bottom: 1px solid #C8C8C8;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 0 24px;
|
||||
position: relative;
|
||||
}
|
||||
#header::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: -1px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
background: repeating-linear-gradient(to right, #FF4B00 0px, #FF4B00 4px, transparent 4px, transparent 12px);
|
||||
}
|
||||
#header h1 {
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
color: #0A0A0A;
|
||||
}
|
||||
#header h1 span {
|
||||
color: #FF4B00;
|
||||
}
|
||||
#header ul {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
#header ul li {
|
||||
display: inline-block;
|
||||
padding: 0 1.5rem;
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.06em;
|
||||
}
|
||||
#header ul li a {
|
||||
text-decoration: none;
|
||||
color: #4A4A4A;
|
||||
text-transform: uppercase;
|
||||
transition: color 0.15s ease;
|
||||
position: relative;
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
#header ul li a::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 1px;
|
||||
background-color: #FF4B00;
|
||||
transition: width 0.2s ease;
|
||||
}
|
||||
#header ul li a:hover {
|
||||
color: #0A0A0A;
|
||||
}
|
||||
#header ul li a:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
#header ul li a.active {
|
||||
color: #FF4B00;
|
||||
}
|
||||
#header ul li a.active::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#main {
|
||||
width: 100%;
|
||||
height: calc(100% - 60px - 10px);
|
||||
padding: 10px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 25px;
|
||||
}
|
||||
|
||||
#side {
|
||||
width: 400px;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 25px;
|
||||
}
|
||||
|
||||
#info {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #FFFFFF;
|
||||
border: 1px solid #C8C8C8;
|
||||
padding: 10px;
|
||||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
|
||||
background-size: 20px 20px;
|
||||
}
|
||||
#info meal-list {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
#info meal-list header {
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
#info meal-list header select {
|
||||
border: 1px solid #C8C8C8;
|
||||
border-radius: 0;
|
||||
padding: 4px 8px;
|
||||
font-size: 12px;
|
||||
font-family: "GMarketSans", serif;
|
||||
letter-spacing: 0.04em;
|
||||
background-color: #FFFFFF;
|
||||
color: #0A0A0A;
|
||||
cursor: pointer;
|
||||
transition: border-color 0.15s, box-shadow 0.15s;
|
||||
}
|
||||
#info meal-list header select:hover {
|
||||
border-color: #0A0A0A;
|
||||
box-shadow: none;
|
||||
}
|
||||
#info meal-list header select:focus {
|
||||
outline: none;
|
||||
border-color: #FF4B00;
|
||||
}
|
||||
#info meal-list ul {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
cursor: ns-resize;
|
||||
}
|
||||
#info meal-list ul::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
#info meal-list ul li {
|
||||
width: 100%;
|
||||
height: 56px;
|
||||
border-radius: 0;
|
||||
border: 1px solid #C8C8C8;
|
||||
border-left: 3px solid transparent;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
padding-left: 10px;
|
||||
flex-shrink: 0;
|
||||
background-color: #FFFFFF;
|
||||
font-size: 13px;
|
||||
color: #4A4A4A;
|
||||
transition: border-left-color 0.15s, background-color 0.15s, color 0.15s;
|
||||
}
|
||||
#info meal-list ul li:hover {
|
||||
border-left-color: #FF4B00;
|
||||
background-color: rgba(255, 75, 0, 0.08);
|
||||
color: #0A0A0A;
|
||||
}
|
||||
#info meal-list ul li.active {
|
||||
border-left-color: #FF4B00;
|
||||
background-color: rgba(255, 75, 0, 0.08);
|
||||
color: #0A0A0A;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
#calendar {
|
||||
border: 1px solid #C8C8C8;
|
||||
border-top: 3px solid #FF4B00;
|
||||
width: calc(100% - 400px - 25px);
|
||||
height: 100%;
|
||||
background-color: #FFFFFF;
|
||||
position: relative;
|
||||
}
|
||||
#calendar iframe {
|
||||
border-radius: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: none;
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
h1 {
|
||||
font-size: 16px;
|
||||
}
|
||||
#main {
|
||||
width: 100%;
|
||||
flex-direction: column;
|
||||
}
|
||||
#side {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
#task {
|
||||
height: auto;
|
||||
}
|
||||
#info {
|
||||
height: auto;
|
||||
}
|
||||
#calendar {
|
||||
width: 100%;
|
||||
height: 400px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=style.css.map */
|
||||
Reference in New Issue
Block a user