From 82e05801a16672e68b139062a2f70b6cf134cfb2 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Fri, 7 Apr 2017 11:31:05 +0200 Subject: [PATCH] Created stylesheet --- webpage/style.css | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 webpage/style.css diff --git a/webpage/style.css b/webpage/style.css new file mode 100644 index 0000000..1a4a318 --- /dev/null +++ b/webpage/style.css @@ -0,0 +1,22 @@ +/* +* @Author: KevinMidboe +* @Date: 2017-04-07 00:47:40 +* @Last Modified by: KevinMidboe +* @Last Modified time: 2017-04-07 01:13:27 +*/ + +h3 { + padding-left: 40px; +} + +/* valid color */ +.input-field input[type=text].valid { + border-bottom: 1px solid #00a69a; + box-shadow: 0 1px 0 0 #00a69a; +} + +/* invalid color */ +.input-field input[type=text].invalid { + border-bottom: 1px solid #9e9e9e; + box-shadow: 0 1px 0 0 #9e9e9e; +} \ No newline at end of file