summaryrefslogtreecommitdiff
path: root/scripts/css
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2019-12-23 14:27:52 +0900
committerKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2019-12-23 14:27:52 +0900
commitdc71f3518c95f8d9d306e8a4e53bc9bd2e9928e3 (patch)
tree54552f6ba6cec40e16cef5c22043d9f510087e00 /scripts/css
parentbb506a3f4c5441ecb212874077ad8b1bf335c936 (diff)
parent05040a728026b28ce7c6183d2adfa80218b306cb (diff)
Merge remote-tracking branch 'gitlab/wiki' into HEAD
Diffstat (limited to 'scripts/css')
-rw-r--r--scripts/css44
1 files changed, 44 insertions, 0 deletions
diff --git a/scripts/css b/scripts/css
new file mode 100644
index 0000000..cff3876
--- /dev/null
+++ b/scripts/css
@@ -0,0 +1,44 @@
+h1 {
+ color: #364e96;
+ border: solid 3px #364e96;
+ padding: 0.5em;
+ border-radius: 25px 0px 0px 25px;
+ background: linear-gradient(transparent 20%, #aaddff 80%);
+}
+
+h2 {
+ background: linear-gradient(transparent 20%, #a7d6ff 80%);
+}
+
+h3 {
+ border-left: solid 5px #a0d0ff;
+ padding: 0.25em 0.5em;
+}
+
+
+table {
+ border-collapse: collapse;
+ border: solid 1px gray;
+ background-color: #fff2d9;
+}
+
+table th {
+ border: solid 1px gray;
+ background: linear-gradient(#ffdd99,#bbaa88);
+ padding: 1px 0;
+}
+
+table td {
+ border: solid 1px gray;
+}
+
+pre {
+ background: linear-gradient(#eeffee,#88dd66);
+ border: solid 3px gray;
+ padding: 10px 10px;
+ border-radius: 10px;
+}
+
+strong {
+ background: linear-gradient(transparent 30%, #bbbb00);
+}