ken_nogi/Pleasanter/Extended/wwwroot/passwordChanger/css/passwordChange.css
Kenichiro NOGI ce58cb4be4 初回コミット: dev配下(NodeSrv/Pleasanter等)をGitea管理下に統合
GitHub(nextgroup2706/ken_nogi)は今後使わず自社Gitea運用に切替え。
NodeSrvは旧リポジトリの履歴を破棄しファイルのみ統合(Dokploy用サービスアカウントは
別途mygit-admin/NodeSrv.gitに履歴あり)。notepmエクスポート(12GB)とPleasanter
インストーラzip(208MB)はサイズが大きいため.gitignoreで除外。

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-09-04 15:37:06 +09:00

113 lines
1.7 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pwChange,
input {
font-size: 1.1em;
font-weight: bold;
}
#main {
text-align: center;
}
#Guide {
width: 100%;
}
.row_table {
margin: auto;
}
.row_table td,
.row_table th {
border: 1px solid #cbced2;
border-collapse: collapse;
padding: 4px 15px;
text-align: left;
}
.row_table th {
background-color: #01214d;
color: #FFFFFF;
text-align: right;
}
.progress-bar-container {
position: relative;
margin-top: 10px;
width: 100%;
height: 20px;
background-color: #ddd;
border-radius: 4px;
}
.progress-bar {
position: absolute;
top: 0;
left: 0;
bottom: 0;
background-color: #ddd;
border-radius: 4px;
transition: width 0.4s ease-in-out;
}
.strength-0 {
width: 2%;
background-color: red;
}
.strength-1 {
width: 25%;
background-color: orange;
}
.strength-2 {
width: 50%;
background-color: gold;
}
.strength-3 {
width: 75%;
background-color: yellowgreen;
}
.strength-4 {
width: 100%;
background-color: green;
}
@media screen and (max-width: 480px) {
/* 480px以下に適用されるCSSスマホ用 */
#main {
font-size: 0.6em;
}
.topMessage {
width: 330px !important;
}
#Guide {
font-size: 1.3em;
}
.row_table,
.row_table td,
.row_table th {
border: 1px solid #cbced2;
border-collapse: collapse;
text-align: center;
}
.row_table th {
background: #01214d;
color: #fff;
padding: 4px 12px;
display: block;
}
.row_table td {
background: #f5f6f8;
padding: 4px 12px;
display: block;
}
}