open5gs/webui/static/css/index.css

36 lines
734 B
CSS
Raw Normal View History

2017-06-24 06:28:11 +00:00
/* @import url('https://fonts.googleapis.com/css?family=Roboto'); */
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}
@font-face {
font-family: 'Ubuntu';
src: url('../fonts/Ubuntu-Regular.ttf') format('truetype');
}
2017-05-31 03:21:25 +00:00
2017-06-03 07:56:40 +00:00
html, body {
2017-05-25 01:36:32 +00:00
margin: 0;
2017-05-25 08:11:47 +00:00
padding: 0;
box-sizing: border-box;
2017-05-25 01:36:32 +00:00
2017-05-25 16:44:51 +00:00
-webkit-appearance: none;
2017-06-03 07:56:40 +00:00
-moz-appearance: none;
-o-appearance: none;
-ms-appearance: none;
2017-06-01 01:45:55 +00:00
-webkit-font-smoothing: subpixel-antialiased;
2017-06-03 07:56:40 +00:00
-moz-font-smoothing: subpixel-antialiased;
-o-font-smoothing: subpixel-antialiased;
-ms-font-smoothing: subpixel-antialiased;
2017-05-25 01:36:32 +00:00
2017-05-31 03:21:25 +00:00
font-family: 'Roboto', sans-serif;
2017-06-24 00:08:33 +00:00
font-size: 16px;
2017-06-20 15:09:55 +00:00
background: white;
2017-05-25 01:36:32 +00:00
}
2017-05-31 00:47:03 +00:00
* {
box-sizing: inherit;
}