46 lines
1011 B
CSS
46 lines
1011 B
CSS
@import url("https://file.brz9.dev/web/css/normalize.css");
|
|
@import url("https://file.brz9.dev/cdn/fonts/byl-iconfont-v4.0/icons.css");
|
|
@import url("./layout.css");
|
|
@import url("./colors.css");
|
|
@import url("./fonts.css");
|
|
@import url("./ux.css");
|
|
|
|
|
|
input[type=text] {
|
|
border: 5px solid var(--black);
|
|
padding: 10px;
|
|
border-radius: 0px;
|
|
background-color: var(--white);
|
|
font-family: inherit;
|
|
font-weight: inherit;
|
|
display: inline-block;
|
|
margin: 0px;
|
|
width: auto;
|
|
}
|
|
|
|
select#lang {
|
|
border: 5px solid var(--black);
|
|
padding: 10px;
|
|
border-radius: 0px;
|
|
background-color: var(--white);
|
|
font-family: inherit;
|
|
font-weight: inherit;
|
|
display: inline-block;
|
|
margin: 0px;
|
|
width: auto;
|
|
}
|
|
|
|
input[type=submit] {
|
|
border: 5px solid var(--black);
|
|
padding: 10px;
|
|
border-radius: 0px;
|
|
background-color: var(--black);
|
|
color: var(--white);
|
|
font-family: inherit;
|
|
font-weight: inherit;
|
|
width: 100%;
|
|
}
|
|
|
|
form {
|
|
|
|
} |