kensaku/style.css

50 行
712 B
CSS
Raw 通常表示 履歴

2024-03-26 22:16:11 +09:00
/* Color */
body { background: #120f12; color: #fcfcfc; }
a:link { color: #6aa6eb; }
a:visited { color: #ae6bdb; }
a:visited { color: #ea79d8; }
a:active { color: #f35869; }
a:hover { background: #443b44; }
hr { border-color: #988f98; }
/* Font */
body { line-height: 1.5; }
h1, h2, h3
{
font-size: larger;
font-weight: bold;
}
dl, dt, dd, ul, ol, li, p, a
{
font-size: 100%;
font-weight: inherit;
}
/* Decoration */
a { text-decoration: underline; }
a:hover { text-decoration: none; }
dt { font-weight: bold; }
hr
{
border-style: solid;
border-width: thin 0 0;
height: 0;
margin: 0;
padding: 0;
}
2024-03-29 00:33:23 +09:00
input
{
margin: 0 1px 0 0;
padding: 0 0.5em;
border-width: thin;
line-height: 2;
}