main-content.css
3.29 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
/*** Box ***/
.no-boxes .block {
margin-top: 50px;
}
.box-2 .block-outer,
.box-3 .block-outer{
margin-bottom: 45px;
clear: both;
}
/*** Block Title ***/
#content .block-outer .block-title {
padding: 5px 8px 18px 7px;
margin: 0px 0px 2px 0px;
background: #eee;
border-bottom: none;
font-size: 12px;
font-family: "open_sansbold", Arial, Helvetica, sans-serif;
font-variant: normal;
text-transform: uppercase;
text-align: left;
font-weight: 300;
}
#content .box-1 .block-title {
padding: 5px 8px 20px 10px;
font-size: 18px;
font-family: "open_sansregular", Arial, Helvetica, sans-serif;
text-transform: none;
}
/*** Pagination ***/
#content .pagination {
margin: 48px auto 30px auto;
border-top: 0 none;
font-family: "open_sansregular", Arial, Helvetica, sans-serif;
}
#content .pagination a,
#content .pagination em,
#content .pagination span{
padding: 5px 9px;
margin-right: 4px;
color: #172738;
border: 1px solid #D3D6DE;
border-radius: 4px;
letter-spacing: 0.6px;
font-size: 12px;
font-weight: 700;
text-decoration: none;
display: inline-table;
}
#content .pagination .current {
background-color: #ECEDF1;
font-style: normal;
}
#content .pagination .previous_page{
float: left;
}
#content .pagination .next_page{
float: right;
}
#content .pagination .previous_page,
#content .pagination .next_page{
width: auto;
position: relative;
background-image: none;
font-weight: 500;
}
#content .pagination .disabled{
opacity: 0.5;
}
/*** Button ***/
#content a.button.with-text{
height: 32px;
padding: 5px 15px;
background: #FFF none;
color: #3E67B1;
border-radius: 4px;
border: 1px solid #3E67B1;
font-size: 14px;
line-height: 32px;
text-transform: uppercase;
}
#content #article-actions a.button.with-text{
display: inline-block;
height: 18px;
padding: 5px 10px;
margin-bottom: 5px;
background: #FFF none;
color: #3E67B1;
border-radius: 4px;
border: 1px solid #3E67B1;
font-size: 12px;
line-height: 18px;
text-transform: none;
}
#content #article-actions a.button.with-text span{
padding: 0;
}
.action-profile-members #content .button-bar a.button.with-text{
height: auto;
border: 1px solid #D3D6DE;
font-size: 12px;
line-height: normal;
text-transform: none;
}
.action-profile-members #content .button-bar a.button.with-text:hover{
border-color: #3E67B1;
}
#content form input.button.with-text{
height: 42px;
max-height: 42px;
padding: 5px 15px;
background: #FFF none;
color: #3E67B1;
border-radius: 4px;
border: 1px solid #3E67B1;
font-size: 14px;
line-height: 32px;
text-transform: uppercase;
}
#content a.button:hover,
#content #article-actions a.button.with-text:hover,
#content input.button.with-text:hover{
background-color: #3E67B1;
color: #FFF;
}
/* This is a temporary solution until noosfero deals with logged-out comments in a better manner. */
.comment-replies .comment-logged-out .comment-text,
.comment-logged-out .comment-picture,
.comment-logged-out h4 {
opacity: 1.0;
}
.comment-logged-out .comment-text,
.comment-info {
color: black;
}
/**/
/* Temporary solution to code block in tutorial page. */
.article-body td {
background-color: white;
}
.article-body td:hover {
background-color: white;
}
/* End of temporary solution to code block in tutorial page. */