Remove custom fonts for font-sans / font-mono / etc

This commit is contained in:
0x1eef 2024-04-25 05:54:56 -03:00
parent 9eaf89e856
commit dfb85bb14c
7 changed files with 1 additions and 95 deletions

View file

@ -1,14 +0,0 @@
@font-face {
font-family: "Noto Sans Regular";
src: url("/fonts/noto-sans-regular.ttf") format("truetype");
}
@font-face {
font-family: "Noto Sans Mono Regular";
src: url("/fonts/noto-sans-mono-regular.ttf") format("truetype");
}
@font-face {
font-family: "Noto Serif Regular";
src: url("/fonts/noto-serif-regular.ttf") format("truetype");
}

View file

@ -1,78 +0,0 @@
@import "colors";
.table {
.table.div {
display: flex;
padding: 10px;
width: 100%;
color: #FFF;
background: $gray1;
color: $secondary-color;
border-radius: 2px;
border: #cfcfc4 1px solid;
border-bottom: none;
justify-content: space-between;
}
.table.div.tabbed {
padding: 5px 5px 0 0px;
ul.tabs {
list-style-type: none;
display: flex;
height: 100%;
margin: 0;
padding: 0;
li:first-child {
border-left: none;
}
li {
height: 100%;
margin-right: 5px;
border: 1px solid $gray3;
border-bottom: none;
padding: 10px 5px 5px 10px;
background: #FFF;
border-radius: 5px;
min-width: 120px;
text-align: center;
background: darken($gray1, 10%);
color: lighten($secondary-color, 15%);
cursor: pointer;
opacity: 0.5;
}
li.active, li:hover {
font-weight: bold;
background: #FFF;
color: $secondary-color;
opacity: 1;
}
}
}
.table.content {
background: $gray2;
padding: 10px;
border: #cfcfc4 1px solid;
.task.content {
padding: 10px;
ul li {
line-height: 1.7em;
}
h3,h4,h5 {
&:first-child {
margin: 0 0 5px 0;
}
margin: 15px 0 5px 0;
}
code {
padding: 0px 5px 0px 5px;
font-family: "Noto Sans Mono Regular";
font-weight: bold;
color: lighten(#FF0000, 25%);
border-radius: 5px;
border: 1px solid darken($gray3, 5%);
background: $gray1;
}
}
}
}

View file

@ -1,4 +1,3 @@
@import "fonts";
@import "colors";
@import "global";
@import "tail";
@ -9,7 +8,6 @@ html, html body {
}
body {
font-family: Noto Sans Regular;
font-weight: normal;
}

View file

@ -7,7 +7,7 @@
<link rel="icon" href="/favicon.svg"/>
</head>
<body>
<div class="<%= name %> w-full wrapper"></div>
<div class="<%= name %> w-full wrapper font-sans"></div>
<script src="<%= src %>"></script>
</body>
</html>