This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.scss
132 lines (114 loc) · 2.41 KB
/
globals.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
@import 'gridjs/dist/theme/mermaid.css';
body {
font-family:
'Noto Sans JP',
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen,
Ubuntu,
Cantarell,
'Fira Sans',
'Droid Sans',
'Helvetica Neue',
sans-serif;
margin: 0;
padding: 0;
}
html,
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
/* ハンバーガーボタンの色や形 */
.bm-burger-button {
height: 30px;
left: 36px;
position: fixed;
top: 18px;
width: 36px;
}
/* ハンバーガーボタンの場所 */
.right .bm-burger-button {
left: initial;
right: 24px;
}
.bm-burger-button button:focus {
outline: 2px solid #fff;
outline-offset: 8px;
}
/* バーガーアイコンの「棒」の色や形 */
.bm-burger-bars {
background: #fff;
/* デフォルトは 20% */
height: 15% !important;
}
/* バーガーアイコンの「棒」の色や形(ホバー時) */
.bm-burger-bars-hover {
background: #808080;
height: 10%;
opacity: 0.6;
}
/* メニューを閉じる「バツボタン」の位置およびサイズ */
.bm-cross-button {
height: 35px;
margin: 10px;
width: 35px;
}
/*
メニューを閉じる「バツボタン」の色および形および大きさ
height がバツボタンの大きさ
width は線の太さ
*/
.bm-cross {
background: #bdc3c7;
height: 25px !important;
margin: -3px 0 0 -3px;
width: 2px !important;
}
/*
Sidebar wrapper styles
Note: Beware of modifying this element as it can break the animations - you should not need to touch it in most cases
=> 触るな危険
*/
.bm-menu-wrap {
height: 100%;
position: fixed;
}
/* サイドバーの基本的なスタイル */
.bm-menu {
background: #373a47;
font-size: 1.15em;
padding: 2.5em 1.5em 0;
}
/* メニュー開閉種別が Bubble または Elastic の際の設定 */
.bm-morph-shape {
fill: #373a47;
}
/* メニューアイテムリストのラッパ */
.bm-item-list {
color: #b8b7ad;
padding: 0.2em;
}
/* 個々のメニューアイテム */
.bm-item {
display: inline-block;
margin-bottom: 10px;
outline: none;
text-decoration: none;
}
/* オーバーレイのスタイル */
.bm-overlay {
background: rgb(0 0 0 / 30%);
}
/* Gird.js の検索ボックスを右寄せにする */
.overflow-x-auto .gridjs-search {
float: right;
}