Skip to content

Commit

Permalink
Create hdeader.css
Browse files Browse the repository at this point in the history
  • Loading branch information
X-20A authored Jan 1, 2024
1 parent c981154 commit f759e93
Showing 1 changed file with 88 additions and 0 deletions.
88 changes: 88 additions & 0 deletions commons/hdeader.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
@charset "UTF-8";
body {
margin: 0;
}
body::-webkit-scrollbar {
display: none;
}
p {
margin:3px;
}
a {
text-decoration: none;
}
a:hover,a:visited{
color: #0000EE;
}
ul {
list-style: none;
}
/*競合を避けるため、基本的にclassとidのみ記述*/
.side-bar-icon {
width:24px;
fill:#ffffff;
}
.side-menu-content {
line-height: 40px;
height: 40px;
color: white;
user-select: none;
}
#side-bar-container {
top: 0;
left: -200px;
background-color: #333333;
height: 100%;
position: fixed;
z-index: 99999999;
display: flex;
width: 200px;
}
#side-menu {
width: 100%;
padding-top: 40px;
text-align: center;
color: white;
}
#mask {
top: 0;
width: 100%;
height: 100%;
background-color: black;
opacity: 0.4;
display: none;
position: fixed;
z-index: 99999998;
}
#header-side-close {
position: absolute;
top: 5px;
left: 5px;
cursor: pointer;
}
#header-side-open {
position: absolute;
top: 5px;
left: 5px;
cursor: pointer;
}
#header-container {
position: fixed;
width: 100%;
top: 0;
}
#header-inner-container {
height: 36px;
background-color: #333333;
color: white;
text-align: center;
position: relative;
}
#header-title {
cursor: pointer;
line-height: 36px;
height: 100%;
display: inline-block;
user-select: none;
color: white;
}

0 comments on commit f759e93

Please sign in to comment.