blob: 05d2feeb202e558163054e456f36dd569cd52266 [file] [log] [blame]
Bri Prebilic Colee0311892015-05-15 11:27:15 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Bri Prebilic Cole0e35b822015-05-21 13:29:38 -070017div#login-wrapper {
18 text-align: center;
19}
20
21#login h2 {
Bri Prebilic Cole8db16402015-05-18 13:50:31 -070022 margin: 1%;
Bri Prebilic Cole0e35b822015-05-21 13:29:38 -070023 color: rgb(115, 115, 115);
24 font-size: 100%;
25 font-style: italic;
26 text-align: left;
27 position: absolute;
28 top: -140px;
29}
30
31div#login-logo {
32 margin-top: 7%;
33 width: 217px;
34}
35div#login-logo, div#login-form {
36 display: inline-block;
37}
38
39#login-logo use.glyph.bird {
40 fill: #800;
41}
42#login-logo circle {
43 fill: none;
Bri Prebilic Colee0311892015-05-15 11:27:15 -070044}
45
Bri Prebilic Cole8db16402015-05-18 13:50:31 -070046div#login-form {
Bri Prebilic Cole0e35b822015-05-21 13:29:38 -070047 margin-left: 2.5%;
48 position: relative;
49 width: 240px;
Bri Prebilic Cole8db16402015-05-18 13:50:31 -070050}
51
52#login-form form {
Bri Prebilic Cole0e35b822015-05-21 13:29:38 -070053 line-height: 250%;
54
55}
56#login-form input {
57 display: block;
58 height: 40px;
59 width: 230px;
60 font-size: 19px;
61 padding: 0 5px;
62 margin-bottom: 3.5%;
63 border-radius: 3px;
64 position: absolute;
65}
66#login-form input[type="text"] {
67 top: -110px;
68}
69#login-form input[type="password"] {
70 top: -60px;
71}
72
73#login-form input[type="text"],
74#login-form input[type="password"] {
75 box-shadow: none;
76 border: none;
77 transition: border 0.1s;
78}
79#login-form input[type="text"]:focus,
80#login-form input[type="password"]:focus,
81#login-form input[type="button"]:focus {
82 outline: none;
83 border: solid 2px rgba(122, 188, 229, 0.5);
84}
85
86#login-form a {
87 text-decoration: none;
88}
89
90#login-form input[type="button"] {
91 top: -5px;
92 width: 240px;
93 height: 30px;
94 box-shadow: none;
95 border: none;
96 outline: none;
97 cursor: pointer;
98 letter-spacing: 0.02em;
99 font-size: 14px;
100 background-color: lightgray;
101 transition: background-color 0.4s;
102}
103
104#login-form input[type="button"]:hover {
105 color: white;
106 background-color: #CE5650;
Bri Prebilic Colee0311892015-05-15 11:27:15 -0700107}