| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- @font-face {
- font-family: 'Material Icons';
- font-style: normal;
- font-weight: 10;
- src: url('../Fonts/MaterialIcons-Regular.ttf');
- src: local('Material Icons'), local('MaterialIcons-Regular'),
- url('../Fonts/MaterialIcons-Regular.ttf') format('truetype'),
- }
-
- .material-icons {
- font-family: 'Material Icons';
- font-weight: normal;
- font-style: normal;
- font-size: 16px; /* Preferred icon size */
- display: inline-block;
- line-height: 1;
- text-transform: none;
- letter-spacing: normal;
- word-wrap: normal;
- white-space: nowrap;
- direction: ltr;
-
- /* Support for all WebKit browsers. */
- -webkit-font-smoothing: antialiased;
- /* Support for Safari and Chrome. */
- text-rendering: optimizeLegibility;
-
- /* Support for Firefox. */
- -moz-osx-font-smoothing: grayscale;
-
- /* Support for IE. */
- font-feature-settings: 'liga';
- }
-
- .Red {
- background-color: red;
- color: white;
-
- }
- .Orange {
- background-color: orange;
- color: white;
- }
- .Blue {
- background-color: blue;
- color: white;
- }
- .DarkBlue {
- background-color: darkblue;
- color: white;
- }
- .Black {
- background-color: black;
- color: white;
- }
- .pagination {
- margin-top: 5px;
- }
- .main {
- background-color: gray;
- padding-top: 5px;
- }
- li > span.pageNumbers {
- line-height: 1.7;
- }
- ul>li {
- list-style-type: none;
- display: inline-block;
- }
|