blob: 929e61b6015d24003c4b93e5458fd808497d643c (
plain) (
blame)
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
|
* :not(.material-icons) {
font-family: 'Ubuntu', sans-serif;
}
code, pre, code * {
font-family: 'Ubuntu Mono', monospace !important;
}
.cvs-title, .thread-link {
text-decoration: none;
}
.thread-list-item:hover {
background-color: #f5f5f5;
}
.thread-link {
padding: 5px;
padding-top: 10px;
}
.thread-title {
padding-right: 15vw;
}
.search-field {
margin-right: 15px;
max-width: 200px;
}
.thread-author {
font-style: italic;
font-size: 85%;
}
@media only screen and (min-width: 768px) {
.converse main {
padding-top: 10px;
padding-bottom: 10px;
}
}
.mdl-list__item-text-body {
max-height: 40px;
}
.thread-divider:after {
border-bottom: 1px solid rgba(0,0,0,.13);
content:"";
position: absolute;
width: 80%;
}
html, body {
margin: 0;
padding: 0;
}
.converse .mdl-layout__header-row {
padding-left: 40px;
}
.converse .mdl-layout.is-small-screen .mdl-layout__header-row h3 {
font-size: inherit;
}
.converse .mdl-card {
height: auto;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.converse .mdl-card > * {
height: auto;
}
.converse .mdl-card .mdl-card__supporting-text {
margin: 40px;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
padding: 0;
color: inherit;
width: calc(100% - 80px);
}
.mdl-demo.converse .mdl-card__supporting-text h4 {
margin-top: 0;
margin-bottom: 20px;
}
.converse .mdl-card__actions {
margin: 0;
padding: 4px 40px;
color: inherit;
}
.converse section.section--center {
max-width: 860px;
}
|