Color works again.
This commit is contained in:
parent
aa204ec981
commit
fad887762e
@ -2,10 +2,11 @@
|
||||
|
||||
import CodeTag from "../../../tags/CodeTag.vue";
|
||||
import Paragraph from "../../../tags/Paragraph.vue";
|
||||
import PageStart from "../../../tags/PageStart.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<paragraph>Data Types</paragraph>
|
||||
<page-start>Data Types</page-start>
|
||||
|
||||
<paragraph>Just like any other programming language that has datatypes, Fortran has datatypes as well. The big difference, from
|
||||
other languages, of cause, is how they're created and assigned. If you're a developer of, for example, C#, Java or
|
||||
@ -14,11 +15,11 @@ import Paragraph from "../../../tags/Paragraph.vue";
|
||||
Let's look at a small list of some common types.</paragraph>
|
||||
|
||||
<ul class="mb-6">
|
||||
<li>> <code>integer</code></li>
|
||||
<li>> <code>real</code></li>
|
||||
<li>> <code>double precision</code></li>
|
||||
<li>> <code>logical</code></li>
|
||||
<li>> <code>character</code></li>
|
||||
<li>> <code-tag>integer</code-tag></li>
|
||||
<li>> <code-tag>real</code-tag></li>
|
||||
<li>> <code-tag>double precision</code-tag></li>
|
||||
<li>> <code-tag>logical</code-tag></li>
|
||||
<li>> <code-tag>character</code-tag></li>
|
||||
</ul>
|
||||
|
||||
<paragraph><code-tag>integer</code-tag> is, if you hadn't guessed, a whole number. Like most languages,
|
||||
|
@ -1,7 +1,5 @@
|
||||
:root {
|
||||
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
||||
line-height: 1.5;
|
||||
font-weight: 400;
|
||||
font-family: Inter, system-ui, Avenir, Helvetica, Arial;
|
||||
|
||||
font-synthesis: none;
|
||||
text-rendering: optimizeLegibility;
|
||||
|
@ -1,20 +1,11 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
purge: [
|
||||
'./index.html',
|
||||
'./src/**/*.{vue,js,ts,jsx,tsx}'
|
||||
],
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{js,ts,jsx,tsx,vue}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
'ancient': '#d3d0c9',
|
||||
'ancient_highlight': '#fcf8f5',
|
||||
'ancient_shadow': '#bababa',
|
||||
},
|
||||
padding: {
|
||||
'small': '0.075rem',
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user