Reorganization of css files needed for project

This commit is contained in:
emma 2024-10-28 15:22:29 -04:00
parent 0290c4a299
commit f0de830144
3 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,3 +1,2 @@
img/ img/
system-css/ system-css/
style.css

View File

@ -5,10 +5,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- system.css --> <!-- system.css -->
<link rel="stylesheet" href="system-css/system.css"> <link rel="stylesheet" href="system-css/system.css">
<!-- additional styling defined by myself -->
<link rel="stylesheet" href="style/additional-style.css">
<!-- CDN link if needed --> <!-- CDN link if needed -->
<!-- <link rel="stylesheet" href="https://unpkg.com/@sakun/system.css"> --> <!-- <link rel="stylesheet" href="https://unpkg.com/@sakun/system.css"> -->
<!-- additional styling defined by myself -->
<link rel="stylesheet" href="style/style.css">
<title>Baxter's Desktop</title> <title>Baxter's Desktop</title>
</head> </head>

View File

@ -37,6 +37,7 @@ p {
.window-pane { .window-pane {
display: grid; display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
justify-items: center; justify-items: center;
} }