15 lines
244 B
CSS
15 lines
244 B
CSS
|
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');
|
||
|
|
||
|
* {
|
||
|
box-sizing: border-box;
|
||
|
font-family: "Roboto", sans-serif;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.mr-20 {
|
||
|
margin-right: 20px !important;
|
||
|
}
|