23 lines
424 B
CSS
23 lines
424 B
CSS
/* You can add global styles to this file, and also import other style files */
|
|
@import '~@angular/material/core/theming/prebuilt/indigo-pink.css';
|
|
|
|
.box {
|
|
border: 1px solid black;
|
|
}
|
|
|
|
hr {
|
|
border: none;
|
|
height: 1px;
|
|
/* Set the hr color */
|
|
color: #333; /* old IE */
|
|
background-color: #333; /* Modern Browsers */
|
|
}
|
|
|
|
body {
|
|
font-family: Tahoma, Serif;
|
|
margin:0;
|
|
}
|
|
|
|
.primary {
|
|
background:#3175e2;
|
|
} |