From e3fa0353a034041aca14475b27498b9339a6e83e Mon Sep 17 00:00:00 2001 From: "Oscar J. Rodriguez B" <josuer08@gmail.com> Date: Fri, 6 Mar 2020 16:13:04 -0500 Subject: [PATCH] minor color changes --- partials/head.ejs | 4 ++-- public/stylesheets/style.css | 1 + views/index.ejs | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/partials/head.ejs b/partials/head.ejs index 40c378b..60635ec 100644 --- a/partials/head.ejs +++ b/partials/head.ejs @@ -2,12 +2,12 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta charset="UTF-8"> <title>Oscar J Rodriguez B</title> +<!-- Personalized style --> +<link rel='stylesheet' href='/stylesheets/style.css' /> <!-- bulma framework --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.min.css"> <!-- fontawesome --> <script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script> -<!-- Personalized style --> -<link rel='stylesheet' href='/stylesheets/style.css' /> <style> body { padding-bottom: 50px; diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css index 8e10c18..003930c 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -12,6 +12,7 @@ a { color: #00B7FF; } + .grid { display: grid; grid-template-columns: diff --git a/views/index.ejs b/views/index.ejs index 792a12e..23299ba 100644 --- a/views/index.ejs +++ b/views/index.ejs @@ -22,7 +22,7 @@ <!-- Hero --> - <section class="hero is-primary"> + <section class="hero is-$yellow"> <div class="hero-body"> <div class="container"> <h1 class="title is-2"><%= title %></h1> -- 2.25.1