Color works again.
This commit is contained in:
parent
aa204ec981
commit
fad887762e
@ -2,10 +2,11 @@
|
|||||||
|
|
||||||
import CodeTag from "../../../tags/CodeTag.vue";
|
import CodeTag from "../../../tags/CodeTag.vue";
|
||||||
import Paragraph from "../../../tags/Paragraph.vue";
|
import Paragraph from "../../../tags/Paragraph.vue";
|
||||||
|
import PageStart from "../../../tags/PageStart.vue";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<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
|
<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
|
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>
|
Let's look at a small list of some common types.</paragraph>
|
||||||
|
|
||||||
<ul class="mb-6">
|
<ul class="mb-6">
|
||||||
<li>> <code>integer</code></li>
|
<li>> <code-tag>integer</code-tag></li>
|
||||||
<li>> <code>real</code></li>
|
<li>> <code-tag>real</code-tag></li>
|
||||||
<li>> <code>double precision</code></li>
|
<li>> <code-tag>double precision</code-tag></li>
|
||||||
<li>> <code>logical</code></li>
|
<li>> <code-tag>logical</code-tag></li>
|
||||||
<li>> <code>character</code></li>
|
<li>> <code-tag>character</code-tag></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<paragraph><code-tag>integer</code-tag> is, if you hadn't guessed, a whole number. Like most languages,
|
<paragraph><code-tag>integer</code-tag> is, if you hadn't guessed, a whole number. Like most languages,
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
:root {
|
:root {
|
||||||
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
font-family: Inter, system-ui, Avenir, Helvetica, Arial;
|
||||||
line-height: 1.5;
|
|
||||||
font-weight: 400;
|
|
||||||
|
|
||||||
font-synthesis: none;
|
font-synthesis: none;
|
||||||
text-rendering: optimizeLegibility;
|
text-rendering: optimizeLegibility;
|
||||||
|
@ -1,20 +1,11 @@
|
|||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
export default {
|
export default {
|
||||||
purge: [
|
|
||||||
'./index.html',
|
|
||||||
'./src/**/*.{vue,js,ts,jsx,tsx}'
|
|
||||||
],
|
|
||||||
content: [
|
content: [
|
||||||
"./index.html",
|
"./index.html",
|
||||||
"./src/**/*.{js,ts,jsx,tsx,vue}",
|
"./src/**/*.{js,ts,jsx,tsx,vue}",
|
||||||
],
|
],
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
colors: {
|
|
||||||
'ancient': '#d3d0c9',
|
|
||||||
'ancient_highlight': '#fcf8f5',
|
|
||||||
'ancient_shadow': '#bababa',
|
|
||||||
},
|
|
||||||
padding: {
|
padding: {
|
||||||
'small': '0.075rem',
|
'small': '0.075rem',
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user