-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (37 loc) · 707 Bytes
/
Copy pathstyle.css
File metadata and controls
43 lines (37 loc) · 707 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
/* Based on https://stackoverflow.com/questions/90178/make-a-div-fill-the-height-of-the-remaining-screen-space/16960823 */
html,
body {
height: 99%;
margin: 2px;
}
.box {
display: flex;
flex-flow: column;
height: 100%;
}
.box .row {
border: none;
}
.box .row.header {
flex: 0 1 auto;
/* The above is shorthand for:
flex-grow: 0,
flex-shrink: 1,
flex-basis: auto
*/
}
.box .row.content {
flex: 1 1 auto;
}
/* https://www.w3schools.com/css/css3_buttons.asp */
.button {
background-color: #008CBA; /* Blue */
border-style: solid;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
width: 30%;
}