Skip to content

Commit

Permalink
[MERGE] : โœ… 4TH MERGEING IN โ†’ style to left section 1
Browse files Browse the repository at this point in the history
Merge pull request #1 from uri-ojgj/web/r6hex
  • Loading branch information
r6hex-1g authored Jul 9, 2024
2 parents cdcbf65 + e7c167c commit a4f4f63
Show file tree
Hide file tree
Showing 3 changed files with 241 additions and 0 deletions.
158 changes: 158 additions & 0 deletions dashboard/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,158 @@
@charset "utf-8";

* {
margin: 0;
}

/* font initialize */
@font-face {
font-family: 'Ownglyph_meetme-Rg';
src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2402_1@1.0/Ownglyph_meetme-Rg.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}

:root {
box-sizing: border-box;
/* font applied */
font-family: 'Ownglyph_meetme-Rg';
}

body {
display: block;
height: 100vh;
align-items: center;
background-image: linear-gradient(105deg, #F7B8B8 15.35%, #9AABE4 80.71%);
}

/* left section - profile & channels */
.left {
padding: 6px 0px 6px 6px;
display: flex;
position: fixed;
width: 345px;
height: 100vh;
display: flex;
}

/* profile section */
.left .lLeft {
display: flex;
width: 78px;
height: 98.5vh;
flex-shrink: 0;
background: rgba(255, 255, 255, 0.30);
border-radius: 20px 0px 0px 20px;
}

.left .lLeft .profileSection {
display: flex;
padding: 27px 14px 25px 14px;
flex-direction: column;
justify-content: flex-end;
align-items: center;
gap: 35px;
flex-shrink: 0;
}

.left .lLeft .profileSection .fa-solid {
color: #727272;
}

.left .lLeft .profileSection .fa-solid:hover {
color: #000000;
}

.left .lLeft .profileSection .profile {
display: block;
width: 50px;
height: 50px;
flex-shrink: 0;
border-radius: 50px;
}

/* channel section */
.left .lRight {
width: 271px;
height: 99vh;
flex-shrink: 0;
border-right: 1px solid rgba(0, 0, 0, 0.1);
background: rgba(255, 255, 255, 0.15);
border-radius: 0px 20px 20px 0px;
}

.left .lRight .block {
display: flex;
width: 267px;
height: 990px;
padding: 40px 10px 10px 20px;
flex-direction: column;
align-items: flex-start;
gap: 20px;
flex-shrink: 0;
}

.left .lRight .block .fa-chevron-left {
flex-shrink: 0;
color: #727272;
}

/* hover action */
.left .lRight .block .fa-chevron-left:hover {
flex-shrink: 0;
color: #000000;
}

.left .lRight .block .channel {
display: flex;
width: 221px;
height: 70px;
justify-content: center;
align-items: center;
gap: 15px;
flex-shrink: 0;
padding: 20px 0px 0px 0px;
}

.left .lRight .block .channel .icon {
width: 70px;
height: 70px;
border-radius: 50px;
background-color: rgba(176, 158, 113, 0.80);
align-self: flex-start;
}

.left .lRight .block .channel .icon h1 {
display: block;
width: 42px;
height: 42px;
flex-shrink: 0;
font-size: 42px;
font-weight: 400;
line-height: normal;
margin: 12.5px auto;
}

.left .lRight .block .channel .text {
display: flex;
flex-direction: column;
width: 136px;
height: 46px;
gap: 2px;
flex-shrink: 0;
}

.left .lRight .block .channel .text .head {
width: 136px;
height: 28px;
font-size: 30px;
font-weight: 400;
}

.left .lRight .block .channel .text .desc {
width: 112px;
height: 16px;
color: #6F6F6F;
font-size: 17px;
font-weight: 400;
}
83 changes: 83 additions & 0 deletions dashboard/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
<!DOCTYPE html>
<html lang="ko">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Avorton</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet" href="./main.css">
</head>

<body>
<!-- left section -->
<div class="left">
<!-- protfile & channel section -->
<div class="lLeft">
<div class="profileSection">
<i class="fa-solid fa-ellipsis-vertical fa-xl"></i>
<i class="fa-solid fa-gear fa-xl"></i>
<img src="../images/IMG_0830.JPG" alt="" class="profile">
</div>
</div>

<!-- infomation section -->
<div class="lRight">
<div class="block">
<i class="fa-solid fa-chevron-left fa-2xl"></i>
<div class="channel">
<div class="icon">
<h1>๐Ÿ </h1>
</div>
<div class="text">
<p class="head">์ •๋ณดํŒ ๋ณด๊ธฐ</p>
<p class="dsec">๋งˆ์ง€๋ง‰ ๋ฐฉ๋ฌธ : ??์ผ ์ „</p>
</div>
</div>
</div>
</div>
</div>

<!-- right section -->
<div class="right">
<div class="rLeft">
<div class="subject">
<div class="korean">

</div>

<div class="math">

</div>

<div class="science">

</div>

<div class="engilsh">

</div>

<div class="music">

</div>

<div class="art">

</div>
</div>
</div>

<div class="rRight">
<div class="calendar">

</div>

<div class="studies">

</div>
</div>
</div>
</body>

</html>
Binary file added images/IMG_0830.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a4f4f63

Please # to comment.