forked from bvaughn/react-virtualized
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApplication.css
119 lines (111 loc) · 1.79 KB
/
Application.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
113
114
115
116
117
118
119
html, body, :global(#root) {
height: 100%;
}
body {
padding: 0;
margin: 0;
font-family: 'Roboto', 'Open Sans', sans-serif;
font-size: 12px;
color: #272727;
box-sizing: border-box;
}
a {
color: #409890;
}
* {
font-size: inherit;
box-sizing: inherit;
}
.headerRow {
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
background-color: #4db6ac;
flex-shrink: 0;
}
.logo {
width: 35px;
height: 35px;
}
.logoRow {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.ReactVirtualizedContainer {
display: inline-flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin: 0.25rem;
}
.LogoColumn {
display: inline-flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0 1rem;
text-transform: uppercase;
}
.PrimaryLogoText,
.SecondaryLogoText {
text-transform: lowercase;
font-size: 2em;
}
.PrimaryLogoText {
font-weight: bold;
color: #272727;
margin: 0 .5em;
}
.SecondaryLogoText {
color: #ffffff;
}
.NavList {
margin: 0;
padding: 0;
list-style: none;
font-size: 0.8rem;
}
.ComponentList,
.HighOrderComponentList {
display: flex;
flex-wrap: wrap;
align-items: center;
margin: 0;
padding: 0;
list-style: none;
font-size: 0.7rem;
}
.ComponentList {
background-color: #272727;
}
.HighOrderComponentList {
background-color: #111;
}
.demo {
display: flex;
flex-direction: column;
height: 100vh;
}
.Body {
flex: 1 0 auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
.ScrollingBody {
composes: Body;
overflow: auto;
flex: 1 1 auto;
}
.column {
display: flex;
flex-direction: column;
flex: 0 0 100%;
width: 100%;
max-width: 100%;
}