-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
44 lines (42 loc) · 756 Bytes
/
main.css
File metadata and controls
44 lines (42 loc) · 756 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
html,
body {
margin : 0;
padding : 0;
height:100%;
}
.page-content {
background : #cecece;
height : 100vh;
width : 100vw;
display:flex;
flex-direction:column;
}
.header {
display: flex;
flex-direction: column;
justify-content: center;
}
.silo-container {
display:flex;
align-items:stretch;
flex-direction:row;
height:100vh;
}
.silo {
flex:1;
border-right: 1px solid #999;
border-left: 1px solid #fff;
max-width:300px;
min-width:200px;
}
.tile {
border: 1px solid #999;
padding: 10px;
margin: 7px 5px;
background-clip: padding-box;
background-color: #ffffff;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.silo h4 {text-align:center}