mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-15 13:17:41 +03:00
148 lines
2.7 KiB
CSS
148 lines
2.7 KiB
CSS
@font-face {
|
|
font-family: "bau";
|
|
src: url("http://storage.googleapis.com/urbit-extra/bau.woff");
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "bau";
|
|
src: url("http://storage.googleapis.com/urbit-extra/bau-italic.woff");
|
|
font-weight: 400;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: "bau";
|
|
src: url("http://storage.googleapis.com/urbit-extra/bau-medium.woff");
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "bau";
|
|
src: url("http://storage.googleapis.com/urbit-extra/bau-mediumitalic.woff");
|
|
font-weight: 500;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: "bau";
|
|
src: url("http://storage.googleapis.com/urbit-extra/bau-bold.woff");
|
|
font-weight: 600;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "bau";
|
|
src: url("http://storage.googleapis.com/urbit-extra/bau-bolditalic.woff");
|
|
font-weight: 600;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: "bau";
|
|
src: url("http://storage.googleapis.com/urbit-extra/bau-super.woff");
|
|
font-weight: 600;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "bau";
|
|
src: url("http://storage.googleapis.com/urbit-extra/bau-superitalic.woff");
|
|
font-weight: 600;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: "scp";
|
|
src: url("http://storage.googleapis.com/urbit-extra/scp-extralight.woff");
|
|
font-weight: 200;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "scp";
|
|
src: url("http://storage.googleapis.com/urbit-extra/scp-light.woff");
|
|
font-weight: 300;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "scp";
|
|
src: url("http://storage.googleapis.com/urbit-extra/scp-regular.woff");
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "scp";
|
|
src: url("http://storage.googleapis.com/urbit-extra/scp-medium.woff");
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "scp";
|
|
src: url("http://storage.googleapis.com/urbit-extra/scp-bold.woff");
|
|
font-weight: 600;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "scp";
|
|
src: url("http://storage.googleapis.com/urbit-extra/scp-black.woff");
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html,
|
|
input,
|
|
button,
|
|
body {
|
|
font-family: "bau";
|
|
font-size: 18px;
|
|
}
|
|
|
|
pre,
|
|
code,
|
|
.mono {
|
|
font-family:"scp";
|
|
}
|
|
|
|
#c {
|
|
width: 24rem;
|
|
position: absolute;
|
|
left: 50%;
|
|
margin-left: -12rem;
|
|
}
|
|
|
|
#c pre {
|
|
font-size: .6rem;
|
|
}
|
|
|
|
#c.err {
|
|
width: 32rem;
|
|
margin-left: -16rem;
|
|
}
|
|
|
|
#pass {
|
|
width: 24rem;
|
|
}
|
|
|
|
button {
|
|
border: .3rem solid #000;
|
|
background-color: #fff;
|
|
font-size: 1rem;
|
|
padding: .3rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
#ship,
|
|
input {
|
|
font-family: "scp";
|
|
display: inline;
|
|
border: none;
|
|
background-color: #f5f5f5;
|
|
padding: .3rem;
|
|
outline: none;
|
|
}
|
|
|
|
#ship:focus,
|
|
input:focus {
|
|
background-color: #eee;
|
|
}
|