-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.css
70 lines (60 loc) · 1.15 KB
/
index.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
body {
padding-top: 100px;
}
.navbar {
height: 57px;
background-image: linear-gradient(102deg, #374c89, #3c4c89 44%, #713f7f);
box-shadow: 0 2px 19px 0 rgba(0, 0, 0, 0.07);
}
.navbar-inverse .navbar-brand {
color: #fff;
}
#auth-form {
width: 400px;
margin-left: auto;
margin-right: auto;
}
.form-group{
margin-bottom: 20px;
}
.form-horizontal .control-label {
padding-top: 0px;
margin-bottom: 5px;
}
.btn {
width: 200px;
border-radius: 100px;
background-color: #4ba8ff;
box-shadow: 0 2px 7px 0 rgba(0,0,0,.2);
color: #fff;
border: none;
display: block;
margin-top: 10px;
margin-left: auto;
margin-right: auto;
margin-bottom: 40px;
padding: 10px;
padding-left: 16px;
padding-right: 16px;
font-size: 16px;
}
.btn:hover {
background-color: #7ec1ff;
color: #fff;
}
#add-note-form {
width: 400px;
margin-left: auto;
margin-right: auto;
}
#notes-list {
width: 500px;
margin-right: auto;
margin-left: auto;
}
.note {
border: solid #e4e4e4 1px;
box-shadow: 0 2px 7px 0 rgba(0,0,0,.1);
padding: 20px;
margin-bottom: 30px;
}