-
Notifications
You must be signed in to change notification settings - Fork 0
/
twittertoken-viewer.css
192 lines (172 loc) · 4.15 KB
/
twittertoken-viewer.css
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*** 個別部分 ***/
/* 背景色 */
body {
background: linear-gradient(to bottom right, #1bd8dee6 0%, #188cc2e6 100%);
}
/* ナビゲーションバーの色 */
.navbar {
background: #1da1f2;
}
/* スマホでのタイトルのフォントサイズ */
/* iPhone 6s サイズでボタンが改行されない程度に設定 */
.navbar-brand {
font-size: 0.84em;
}
@media (max-width: 575.99px) {
.navbar-brand img {
display: none;
}
}
/* フッターを画面下部に固定する */
/* ref: https://twitter.com/tak_dcxi/status/1471627450106974215 */
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
body > .container {
flex: 1;
}
/*** 共通部分 ***/
/* フォント */
body {
font-family: 'Open Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP';
}
/* デフォルトのフォーカスリングを表示しない */
*:focus {
outline: none !important;
}
*:focus-visible {
outline: #E86333;
}
/* アイコンの右側の余白 */
i {
margin-right: 10px;
}
/* スマホでナビゲーションバーのスタイルが崩れないように調整 */
.navbar {
padding-left: 0;
padding-right: 0;
}
.navbar-brand {
margin-right: 0;
}
@media (min-width: 576px) {
.navbar-brand {
font-size: 1.25rem;
margin-right: 1rem;
}
}
.navbar-collapse {
overflow: hidden;
}
.dropdown-item {
text-overflow: ellipsis;
overflow: hidden;
}
/* ナビゲーションバーを 768px 以上 992px 未満でも折りたたんで表示させる */
@media (min-width: 768px) {
.navbar-expand-md > .container {
flex-wrap: wrap;
}
.navbar-expand-md .navbar-toggler {
display: block;
}
.navbar-expand-md .navbar-collapse {
display: block !important;
flex-basis: 100%;
flex-grow: 1;
align-items: center;
}
.navbar-expand-md .navbar-collapse.collapse:not(.show) {
display: none !important;
}
.navbar-expand-md .navbar-nav {
flex-direction: column;
}
.navbar-expand-md .navbar-nav .dropdown-menu {
position: static;
}
}
@media (min-width: 992px) {
.navbar-expand-md > .container {
flex-wrap: nowrap;
}
.navbar-expand-md .navbar-toggler {
display: none;
}
.navbar-expand-md .navbar-collapse {
display: flex !important;
flex-basis: auto;
overflow: visible;
}
.navbar-expand-md .navbar-collapse.collapse:not(.show) {
display: flex !important;
}
.navbar-expand-md .navbar-nav {
flex-direction: row;
}
.navbar-expand-md .navbar-nav .dropdown-menu {
position: absolute;
}
}
/* ナビゲーションバーに hover したとき */
a.text-light, a.text-light {
transition: background-color .15s cubic-bezier(.4,0,.6,1);
border-radius: 4px;
}
a.text-light:hover, a.text-light:focus {
color: #f8f9fa !important;
}
a.text-light:hover {
background: rgba(0, 0, 0, 0.08);
}
/* ドロップダウンメニューに hover したとき */
.dropdown-item {
transition: background-color 0.15s cubic-bezier(0.4, 0, 0.6, 1);
}
/* ドロップダウンメニューをクリックしたときの青いハイライトを削除 */
.dropdown-item.active, .dropdown-item:active {
color: inherit;
background-color: #e9ecef;
}
/* px-2 と px-3 の中間 */
.px-2-3 {
padding-left: 0.75rem !important;
padding-right: 0.75rem !important;
}
/* px-2 と px-3 の中間 */
@media (min-width: 576px) {
.px-sm-2-3 {
padding-left: 0.75rem !important;
padding-right: 0.75rem !important;
}
}
/* ツイートボタンのスタイルの調整 */
.twitter-share-button {
position: relative !important;
top: 4px;
}
/* 箇条書きの行間の調整 */
ul, ol {
line-height: 1.6;
}
footer .navbar-header {
margin-left: auto;
}
/* スマホでのスタイルを調整 */
@media screen and (max-width: 575.99px) {
ul, ol {
padding-left: 20px;
}
ol.mb-0 {
padding-inline-start: 20px;
}
footer .navbar-brand {
margin-right: 0px;
}
footer .navbar-header {
margin-right: auto;
flex-direction: column;
}
}