-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.css
More file actions
93 lines (73 loc) · 1.45 KB
/
App.css
File metadata and controls
93 lines (73 loc) · 1.45 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
.App {
text-align: center;
}
.App-logo {
animation: App-logo-spin infinite 20s linear;
height: 80px;
}
.App-header {
background-color: #222;
height: 150px;
padding: 20px;
color: white;
}
.App-title {
font-size: 1.5em;
}
.App-intro {
font-size: large;
}
@keyframes App-logo-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
body{
background: #24C6DC; /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #24C6DC , #514A9D); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #24C6DC , #514A9D); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
input[type="email"] {
width: 480px;
margin-top: 20px;
padding: 10px;
font-size: 30px;
border: none;
border-bottom: solid 2px #c9c9c9;
transition: border 0.3s;
}
input[type="password"] {
width: 480px;
margin-top: 20px;
padding: 10px;
font-size: 30px;
border: none;
border-bottom: solid 2px #c9c9c9;
transition: border 0.3s;
}
input[type="email"]:focus,
input[type="password"].focus {
border-bottom: solid 2px #969696;
}
button {
font-size: 30px;
background-color: #00B16A;
color: #fff;
padding: 10px 30px;
margin-top: 20px;
margin-right: 10px;
}
p{
color: orange;
text-decoration: underline;
}
.hide{
display: none;
}
.google{
font-size: 30px;
background-color: #dd4b39;
color: #fff;
padding: 10px 30px;
margin-top: 20px;
margin-right: 10px;
}