forked from dockersamples/node-bulletin-board
-
Notifications
You must be signed in to change notification settings - Fork 2
/
site.css
52 lines (44 loc) · 873 Bytes
/
site.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
body {
padding-bottom: 20px;
font-size: 20px;
}
.body-content {
padding-left: 15px;
padding-right: 15px;
}
.sub-nav {
position: fixed;
top: 51px;
background: #fff;
border-bottom: 2px solid #ddd;
width: 100%;
height: 45px;
display: flex;
justify-content: space-between;
}
.sub-nav button {
align-self: center;
display: flex;
position: absolute;
right: 10px;
}
.list {
width: 31.5%;
float: left;
margin-left: 20px;
margin-top: 20px;
font-size: 13px;
}
.list .panel-body {
height: 100px;
overflow-y: auto;
}
.btn-danger {
margin-top: 0px !important;
}
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
.body-content {
padding: 0;
}
}