Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/danielkvist/hugo-terrassa-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authordanielkvist <d94.zaragoza@gmail.com>2018-12-15 00:22:21 +0300
committerdanielkvist <d94.zaragoza@gmail.com>2018-12-15 00:22:21 +0300
commit0161e87d987df0a1e96137bf6beb08d057496211 (patch)
treee025b2ef38784730d8a2ddf24fe3e9fcd899d5c5 /static
parent635f71863361390b236408b4183ba4c6114864f3 (diff)
add CSS styles
Diffstat (limited to 'static')
-rw-r--r--static/css/style.css54
1 files changed, 54 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css
new file mode 100644
index 0000000..c00b6ed
--- /dev/null
+++ b/static/css/style.css
@@ -0,0 +1,54 @@
+/* HEADER */
+.header {
+ background-color: white;
+ box-shadow: 0 1px 5px var(--divider);
+}
+
+.title-link {
+ color: var(--primary-dark);
+ font-size: 1.1rem;
+ text-decoration: none;
+}
+
+.menu-links {
+ list-style: none;
+}
+
+.menu-link {
+ transition: color 0.25s;
+ color: var(--primary-text);
+ text-decoration: none;
+}
+
+.menu-link:hover,
+.menu-link:focus {
+ color: var(--primary);
+}
+
+/* BANNER */
+.banner-content>h1 {
+ font-size: var(--title);
+ font-weight: 300;
+}
+
+.banner-content>h2 {
+ font-size: var(--subtitle);
+}
+
+.banner-content>p {
+ font-size: var(--subheader);
+}
+
+.contact-btn {
+ background-color: var(--primary-dark);
+ border: 2px solid var(--primary-dark);
+ color: white;
+ font-weight: 400;
+ transition: all 0.25s;
+ text-decoration: none;
+}
+
+.contact-btn:hover {
+ background-color: white;
+ color: var(--primary-dark);
+} \ No newline at end of file