diff options
Diffstat (limited to 'website/static')
-rw-r--r-- | website/static/css/bootstrap.css | 6 | ||||
-rw-r--r-- | website/static/css/main.css | 26 |
2 files changed, 29 insertions, 3 deletions
diff --git a/website/static/css/bootstrap.css b/website/static/css/bootstrap.css index ea91a3d..5fd35bb 100644 --- a/website/static/css/bootstrap.css +++ b/website/static/css/bootstrap.css @@ -287,6 +287,9 @@ textarea { font-size: inherit; line-height: inherit; } +textarea { + height: 150px; +} a { color: #428bca; text-decoration: none; @@ -1651,6 +1654,8 @@ label { display: inline-block; margin-bottom: 5px; font-weight: bold; + float:left; + margin-right: -90px; } input[type="search"] { -webkit-box-sizing: border-box; @@ -1666,6 +1671,7 @@ input[type="checkbox"] { } input[type="file"] { display: block; + margin-left: 30%; } input[type="range"] { display: block; diff --git a/website/static/css/main.css b/website/static/css/main.css index 4aa9c42..e46e71d 100644 --- a/website/static/css/main.css +++ b/website/static/css/main.css @@ -1,6 +1,3 @@ -html, button, input, select, textarea {
- color: #222;
-}
body {
font-size: 1em;
line-height: 1.4;
@@ -529,3 +526,26 @@ body .header { line-height: 38px;
}
}
+
+.row1 {
+ width:80%;
+ margin-left: 5%;
+
+}
+
+.row1 textarea {
+ height: 150px;
+ width: 350px;
+}
+
+.row1 label {
+ display: inline-block;
+ margin-bottom: 5px;
+ font-weight: bold;
+ min-width: 300px;
+ float: left;
+}
+
+.row1 input {
+ width: 350px;
+}
|