-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
49 lines (42 loc) · 854 Bytes
/
App.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
label {
display: block;
margin-top: 10px;
}
.card-container.card {
max-width: 350px !important;
padding: 40px 40px;
}
.card {
background-color: #f7f7f7;
padding: 20px 25px 30px;
margin: 50px auto 25px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
-moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.profile-img-card {
width: 96px;
height: 96px;
margin: 0 auto 10px;
display: block;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
}
.PostList, .PostDetail, .PostCreate {
margin: 0 20px;
}
.navbar-brand {
margin-left: 10px;
}
.PostCreate .btn, .PostUpdate .btn {
margin-top: 5px;
width: 100%;
}
.PostDetail .btn {
margin-top: 5px;
width: 170px;
}