aboutsummaryrefslogtreecommitdiff
path: root/src/css
diff options
context:
space:
mode:
authorIndrajith K L2022-08-27 04:43:46 +0530
committerIndrajith K L2022-08-27 04:44:07 +0530
commit67dbc490de261318f1190d1e7e46dd9272f51ef6 (patch)
treeede2dfca42cb8a4b08824e40cfbb885f25bd236d /src/css
downloadindrajith-dev-67dbc490de261318f1190d1e7e46dd9272f51ef6.tar.gz
indrajith-dev-67dbc490de261318f1190d1e7e46dd9272f51ef6.tar.bz2
indrajith-dev-67dbc490de261318f1190d1e7e46dd9272f51ef6.zip
Initial Commit
* MVP
Diffstat (limited to 'src/css')
-rw-r--r--src/css/fonts/PPSupplyMono-Regular.otfbin0 -> 23996 bytes
-rw-r--r--src/css/fonts/PPSupplyMono-Ultralight.otfbin0 -> 24808 bytes
-rw-r--r--src/css/fonts/PPSupplySans-Regular.otfbin0 -> 45632 bytes
-rw-r--r--src/css/fonts/PPSupplySans-Ultralight.otfbin0 -> 48160 bytes
-rw-r--r--src/css/styles.css103
5 files changed, 103 insertions, 0 deletions
diff --git a/src/css/fonts/PPSupplyMono-Regular.otf b/src/css/fonts/PPSupplyMono-Regular.otf
new file mode 100644
index 0000000..dc66065
--- /dev/null
+++ b/src/css/fonts/PPSupplyMono-Regular.otf
Binary files differ
diff --git a/src/css/fonts/PPSupplyMono-Ultralight.otf b/src/css/fonts/PPSupplyMono-Ultralight.otf
new file mode 100644
index 0000000..0c55672
--- /dev/null
+++ b/src/css/fonts/PPSupplyMono-Ultralight.otf
Binary files differ
diff --git a/src/css/fonts/PPSupplySans-Regular.otf b/src/css/fonts/PPSupplySans-Regular.otf
new file mode 100644
index 0000000..192962e
--- /dev/null
+++ b/src/css/fonts/PPSupplySans-Regular.otf
Binary files differ
diff --git a/src/css/fonts/PPSupplySans-Ultralight.otf b/src/css/fonts/PPSupplySans-Ultralight.otf
new file mode 100644
index 0000000..d7e9aea
--- /dev/null
+++ b/src/css/fonts/PPSupplySans-Ultralight.otf
Binary files differ
diff --git a/src/css/styles.css b/src/css/styles.css
new file mode 100644
index 0000000..398a131
--- /dev/null
+++ b/src/css/styles.css
@@ -0,0 +1,103 @@
+@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
+
+@font-face {
+ font-family: supplyRegular;
+ src: url(./fonts/PPSupplyMono-Regular.otf);
+}
+
+@font-face {
+ font-family: supplyLight;
+ src: url(./fonts/PPSupplyMono-Ultralight.otf);
+}
+
+* {
+ margin: 0;
+ box-sizing: border-box;
+}
+
+html,
+body {
+ display: flex;
+ flex-direction: column;
+ min-height: 100vh;
+}
+
+main {
+ flex: 1;
+ font-family: 'Oswald', sans-serif;
+ margin: 20px;
+}
+
+nav {
+ background: #1c1626;
+ color: #fefffb;
+}
+
+.navs {
+ list-style-type: none;
+ padding-left: 0;
+}
+
+.nav {
+ display: inline-block;
+}
+
+.nav a {
+ display: inline-block;
+ color: #fefffb;
+ text-decoration: none;
+ padding: 10px;
+}
+
+.logo {
+ font-family: "supplyRegular";
+ font-size: 20px;
+}
+
+.nav a.links{
+
+ font-family: "supplyLight";
+}
+
+footer {
+ background: #1c1626;
+ color: #fefffb;
+ font-family: "supplyLight";
+ padding: 10px;
+ font-size: 15px;
+ text-align: center;
+}
+
+.color-white {
+ color: #fefffb;
+}
+
+.color-black {
+ color: #1c1626;
+}
+
+.color-red {
+ color: #ff2961;
+}
+
+.post-lists {
+ margin-top: 10px;
+}
+
+.post-data {
+ margin-bottom: 10px;
+}
+
+.post-date {
+ font-size: 15px;
+}
+
+.post-title {
+ font-size: 20px;
+}
+
+a {
+ color: #ff2961;
+ font-family: 'Oswald', sans-serif;
+}
+