-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.css
89 lines (77 loc) · 1.29 KB
/
index.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
html,
body {
background-color: var(--ts-color-gray);
margin: 0;
padding: 0;
overflow: auto;
}
article {
background: var(--ts-color-gray-lightest);
padding: 20px 20px 10px;
margin: 0 0 20px;
border: 1px solid #cad7dc;
border-radius: 3px;
}
h2 {
margin: 0 0 20px;
padding: 0;
font-family: 'Fira Code', Consolas;
}
.footer {
display: block;
width: 100%;
height: 60px;
background: rgba(60, 60, 60, 0.6);
}
.sidebar-left,
.sidebar-right {
background: rgba(60, 0, 60, 0.6);
}
.sidebar-inner-left,
.sidebar-inner-right {
background: rgba(60, 60, 0, 0.6);
}
.content {
background: white;
}
.button-container {
display: flex;
}
.button-container .box {
width: calc(100% / 6);
}
.button-container .box div {
padding: 10px;
}
ts-list-item {
display: block;
max-width: var(--ts-box-width-medium);
}
.typography-wrapper {
display: flex;
max-width: 350px;
}
.search-container {
display: flex;
}
.search-container div {
width: 400px;
margin: 5px;
}
.document-card-container {
width: 300px;
border: var(--ts-border-width) var(--ts-border-type) var(--ts-color-gray-dark);
}
.status-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
.grid-status {
padding: 10px;
}
@media screen and (max-width: 550px) {
.status-container {
display: flex;
flex-direction: column;
}
}