Skip to content

Commit

Permalink
Relocate CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
QubitPi committed Nov 23, 2024
1 parent e5d9afb commit 1a096fb
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 24 deletions.
21 changes: 0 additions & 21 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

@font-face {
font-family: Ubuntu;
src: url(Ubuntu-R.ttf);
}

@font-face {
font-family: BreitkopfFraktur;
src: url(BreitkopfFraktur.ttf);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Ubuntu;
}

.container {
height: 200vh;
width: 100%;
Expand Down
24 changes: 21 additions & 3 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,31 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
@font-face {
font-family: Ubuntu;
src: url(Ubuntu-R.ttf);
}

@font-face {
font-family: BreitkopfFraktur;
src: url(BreitkopfFraktur.ttf);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
/*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',*/
/* 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',*/
/* sans-serif;*/
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

font-family: Ubuntu;
}

code {
Expand Down

0 comments on commit 1a096fb

Please sign in to comment.