-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (45 loc) · 955 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
body {
font-family: 'Roboto', sans-serif;
background-image: url('/img/landing.png');
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
}
.container {
padding-top: 50px;
}
.card {
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.btn {
border-radius: 10px;
}
.btn i.left {
margin-right: 10px;
}
.btn i.right {
margin-left: 10px;
}
.input-field input[type=email]:focus+label,
.input-field input[type=password]:focus+label {
color: #9e9e9e;
}
.input-field input[type=email]:focus,
.input-field input[type=password]:focus {
border-bottom: 2px solid #4CAF50;
box-shadow: none;
}
.input-field input[type=email]:not(:focus)+label,
.input-field input[type=password]:not(:focus)+label {
top: -18px;
font-size: 14px;
}
.input-field input[type=email]:not(:focus),
.input-field input[type=password]:not(:focus) {
border-bottom: 1px solid #9e9e9e;
box-shadow: none;
}
.center-align {
margin-top: 20px;
}