-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
112 lines (97 loc) · 1.84 KB
/
style.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/* Some Sass variables */
body {
margin: 0;
font-family: 'Roboto';
font-size: 14px;
line-height: 1.3em;
}
.ui {
height: 100vh;
display: -ms-grid;
display: grid;
-ms-grid-rows: 40px 50px 1fr;
grid-template-rows: 40px 50px 1fr;
background-color: #0079bf;
color: #eee;
}
.navbar {
padding-left: 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.navbar.app {
background-color: #0067a3;
font-size: 1.5rem;
}
.navbar.board {
font-size: 1.1rem;
}
.boxes {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
overflow-x: auto;
}
.boxes > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
margin-left: 10px;
}
.boxes::after {
content: '';
-webkit-box-flex: 0;
-ms-flex: 0 0 10px;
flex: 0 0 10px;
}
.list {
width: 300px;
height: calc(100% - 10px - 17px);
}
.list > * {
background-color: #e2e4e6;
color: #333;
padding: 0 10px;
}
.list header {
line-height: 36px;
font-size: 16px;
font-weight: bold;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
cursor: pointer;
}
.list footer {
line-height: 36px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
color: #888;
}
.list ul {
list-style: none;
margin: 0;
max-height: calc(100% - 36px - 36px);
overflow-y: auto;
}
.list ul li {
background-color: #fff;
padding: 10px;
border-radius: 3px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.list ul li:not(:last-child) {
margin-bottom: 10px;
}
.list ul li img {
display: block;
width: calc(100% + 2 * 10px);
margin: -10px 0 10px -10px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
/*# sourceMappingURL=style.css.map */