From 3a4b05d156d9c035bfcfe9ad709bea5698c2f1e3 Mon Sep 17 00:00:00 2001 From: tactonbishop Date: Sat, 4 Jun 2022 14:00:04 +0100 Subject: [PATCH] Last Sync: 2022-06-04 14:00:04 --- Hardware/CPU/Von_Neumann_architecture.md | 2 ++ Hardware/Logic_Gates/Logic_gates.md | 2 +- markdown-styles.css | 25 +++++++++++++++++++++--- 3 files changed, 25 insertions(+), 4 deletions(-) diff --git a/Hardware/CPU/Von_Neumann_architecture.md b/Hardware/CPU/Von_Neumann_architecture.md index 1abe495..f6c2454 100644 --- a/Hardware/CPU/Von_Neumann_architecture.md +++ b/Hardware/CPU/Von_Neumann_architecture.md @@ -5,6 +5,8 @@ tags: - von-neumann --- +# Von Neumann CPU architecture + At the core of a computer sits the Central Processing Unit. This is what manages and executes all computation. The CPU comprises three core components: diff --git a/Hardware/Logic_Gates/Logic_gates.md b/Hardware/Logic_Gates/Logic_gates.md index 1c7ad1b..c3d9fd6 100644 --- a/Hardware/Logic_Gates/Logic_gates.md +++ b/Hardware/Logic_Gates/Logic_gates.md @@ -6,7 +6,7 @@ tags: - binary --- -## Logic gates +# Logic gates Logic gates are the basic building blocks of digital computing. **A logic gate is an electrical circuit that has one or more than one input and only one output.** The input controls the output and is isomorphic with [Boolean connectives](../../Logic/Truth-functional_connectives.md) defined in terms of [truth-tables](../../Logic/Truth-tables.md). diff --git a/markdown-styles.css b/markdown-styles.css index 4befa3f..3cc3ccc 100644 --- a/markdown-styles.css +++ b/markdown-styles.css @@ -2,15 +2,34 @@ h1, h2, h3, h4, h5, h6, p { font-family: 'Inter'; } + h1 { - font-size: 16px; + + font-size: 24px !important; } -p, ul, li { +h2 { + font-size: 20px !important; +} + +h3 { + font-size: 18px !important; +} + +h4 { + font-size: 16px !important; +} + +h5 { + font-size: 14px !important; +} + + +p, ul, li, dl, dd, dt { font-size: 14px; } pre, code { font-family: 'LigaLiberationMono'; - font-size: 14px; + font-size: 12px p !important; } \ No newline at end of file