PCv5/app/static/css/global.css

89 lines
1.2 KiB
CSS

/*
fonts
*/
@font-face { font-family: NotoSans; src: url(../fonts/noto_sans.ttf); }
@font-face { font-family: Raleway; font-weight: 200; src: url(../fonts/raleway_200.ttf); }
@font-face { font-family: Raleway; font-weight: 300; src: url(../fonts/raleway_300.ttf); }
/*
ALL
*/
* {
box-sizing: border-box;
transition: .15s ease;
}
/*
body
*/
body {
margin: 0;
background: #fbfbfb;
font-family: 'DejaVu Sans', sans-serif;
}
/*
links
*/
a {
text-decoration: none;
}
a:focus {
outline: none;
}
/* Buttons */
input[type="button"],
input[type="submit"] {
padding: 6px 0;
border-radius: 3px;
font-size: 14px;
font-weight: 400;
border: 1px solid transparent;
}
/* Checkbox */
input[type="checkbox"] {
vertical-align: middle;
}
/* Input text */
input[type="text"],
input[type="search"],
input[type="password"] {
background: #FFFFFF; color: #000000;
}
input[type="text"]:focus,
input[type="search"]:focus,
input[type="password"]:focus {
box-shadow: :0 0 0 0.2rem rgba(0,123,255,0.25);
}
/* Bootstrap-style rules */
.flex {
display: flex;
}
.bg-green,
.bg-green {
background-color: #149641;
border-color: #0e692d;
color: #ffffff;
}
.bg-green:hover,
.bg-green:focus,
.bg-green:active {
background-color: #0f7331;
border-color: #073617;
}