kensaku/style.css

103 行
1.2 KiB
CSS
Raw パーマリンク 通常表示 履歴

2024-04-03 22:05:11 +09:00
/* Kensaku Style, 2024-04-03 */
html, body, h1, h2, h3,
form, p, hr,
dl, dt, dd, ul, ol, li,
a, input
{
border: none;
font-size: 100%;
font-weight: inherit;
margin: 0;
padding: 0;
}
/* colors */
2024-03-26 22:16:11 +09:00
body { background: #120f12; color: #fcfcfc; }
a:link { color: #6aa6eb; }
a:visited { color: #ae6bdb; }
a:active { color: #f35869; }
a:hover { background: #443b44; }
hr { border-color: #988f98; }
2024-04-03 22:05:11 +09:00
input
{
background: #443b44;
border-color: #746c75;
color: #fcfcfc;
}
2024-03-26 22:16:11 +09:00
2024-04-03 22:05:11 +09:00
input[type=submit]
{
background: #cfcbcf;
border-color: #cfcbcf;
color: #120f12;
}
input[type=submit]:hover
{
background: #746c75;
border-color: #746c75;
color: #fcfcfc;
}
/* end colors */
body
{
margin: 1em 0 0 1em;
line-height: 1.5;
}
2024-03-26 22:16:11 +09:00
h1, h2, h3
{
font-size: larger;
font-weight: bold;
2024-04-03 22:05:11 +09:00
margin-bottom: 0.5em;
2024-03-26 22:16:11 +09:00
}
2024-04-03 22:05:11 +09:00
dl, ul, ol, p
2024-03-26 22:16:11 +09:00
{
2024-04-03 22:05:11 +09:00
margin-bottom: 1em;
2024-03-26 22:16:11 +09:00
}
2024-04-03 22:05:11 +09:00
dd, li
{
margin-left: 2em;
}
2024-03-26 22:16:11 +09:00
2024-04-03 22:05:11 +09:00
dt
{
font-weight: bold;
}
2024-03-26 22:16:11 +09:00
hr
{
border-style: solid;
border-width: thin 0 0;
2024-04-03 22:05:11 +09:00
}
a
{
text-decoration: underline;
}
a:hover
{
text-decoration: none;
}
form li
{
list-style: none;
2024-03-26 22:16:11 +09:00
}
2024-03-29 00:33:23 +09:00
input
{
2024-04-03 22:05:11 +09:00
border-style: solid;
2024-03-29 00:33:23 +09:00
border-width: thin;
2024-04-03 22:05:11 +09:00
margin: 0 1em 0 0;
padding: 0 0.5em;
2024-03-29 00:33:23 +09:00
line-height: 2;
}