-
Notifications
You must be signed in to change notification settings - Fork 849
Expand file tree
/
Copy pathapp.css
More file actions
49 lines (45 loc) · 909 Bytes
/
app.css
File metadata and controls
49 lines (45 loc) · 909 Bytes
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
body {
margin-top: 50px;
margin-bottom: 50px;
}
form {
margin-left: 25%;
}
.ghost-input {
display: block;
font-weight: 300;
width: 50%;
font-size: 25px;
border: 0px;
outline: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: #4b545f;
background: #fff;
font-family: Open Sans, Verdana;
padding: 15px 15px;
margin: 30px 0px;
-webkit-transition: all 0.1s ease-in-out;
-moz-transition: all 0.1s ease-in-out;
-ms-transition: all 0.1s ease-in-out;
-o-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
}
.ghost-input:focus {
border-bottom: 1px solid #ddd;
}
header {
text-align: center;
}
main {
margin-top: 10px;
text-align: center;
}
.app-footer {
font-size: medium;
height: 50px;
bottom: 0;
text-align: center;
padding-top: 20px;
}