forked from CATcher-org/WATcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
178 lines (150 loc) · 2.9 KB
/
styles.css
File metadata and controls
178 lines (150 loc) · 2.9 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/* You can add global styles to this file, and also import other style files */
html,
body {
margin: 0;
padding: 0;
min-height: 100vh;
height: 100%;
}
html,
body {
height: 100%;
}
body {
margin: 0;
font-family: Roboto, 'Helvetica Neue', sans-serif;
}
app-root {
display: flex;
flex-direction: column;
height: 100vh;
}
/* Timeline comment style */
.timeline-header {
background-color: #f1f8ff;
border-bottom: 1px solid #c0d3eb;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
color: #586069;
height: 35px;
padding: 5px;
}
.timeline-comment {
overflow: auto;
border: 1px solid #c0d3eb;
background-color: #fff;
border-radius: 3px;
margin-bottom: 30px;
}
.comment {
padding: 15px;
}
.question-mark {
color: red;
font-size: 35px;
margin: 0 10px 15px 0;
text-shadow: -1.5px 0 black, 0 1.5px black, 1.5px 0 black, 0 -1.5px black;
}
/* Timeline comment style */
/* MaterialUI icon styles */
.material-icons-outlined,
.material-icons.material-icons--outlined,
.material-icons-two-tone,
.material-icons.material-icons--two-tone,
.material-icons-round,
.material-icons.material-icons--round,
.material-icons-sharp,
.material-icons.material-icons--sharp {
font-weight: normal;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
}
.material-icons-outlined,
.material-icons.material-icons--outlined {
font-family: 'Material Icons Outlined';
}
.material-icons-two-tone,
.material-icons.material-icons--two-tone {
font-family: 'Material Icons Two Tone';
}
.material-icons-round,
.material-icons.material-icons--round {
font-family: 'Material Icons Round';
}
.material-icons-sharp,
.material-icons.material-icons--sharp {
font-family: 'Material Icons Sharp';
}
/* MaterialUI icon styles */
.link-grey-dark {
color: #24292e;
font-weight: 500;
font-size: 16px;
}
.link-grey-dark:hover {
color: #0366d6;
}
.no-underline {
text-decoration: none !important;
}
.grid-flush-left {
position: absolute;
left: 5px;
}
.grid-flush-right {
position: absolute;
right: 5px;
}
.mat-table tbody tr:hover td {
background-color: #e8e8ee;
}
table {
width: 100%;
table-layout: fixed;
}
.centralize {
display: flex;
justify-content: center;
align-items: center;
}
.editor-actions {
float: right;
padding: 10px;
}
.editor-action {
margin-left: 10px !important;
}
.bold-name {
font-weight: 500;
font-size: 17px;
}
.full-grid-width {
width: 100%;
}
.white-spinner circle {
stroke: white !important;
}
.sync-spinner {
display: flex;
align-items: center;
justify-content: center;
margin-left: 16px;
margin-right: 16px;
}
.column.left {
max-width: 85%;
min-width: 380px;
}
.column.right {
max-width: 15%;
min-width: 180px;
}