30 lines
499 B
CSS
30 lines
499 B
CSS
@font-face {
|
|
font-family: 'Ume UI Gothic';
|
|
src: url('/fonts/ume-ugo5.ttf') format('truetype');
|
|
}
|
|
|
|
body {
|
|
background-image: url('/img/bg.gif');
|
|
font-family: 'Ume UI Gothic';
|
|
}
|
|
|
|
.container {
|
|
border: 5px #FFDA69 outset;
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
a, a:hover, a:visited {
|
|
color: #FFDA69;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#email, #payment, #username {
|
|
border: 2px #FFDA69 solid;
|
|
width: 32ch;
|
|
}
|
|
#publickey {
|
|
border: 2px #FFDA69 solid;
|
|
width: 64ch;
|
|
}
|