-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.css
More file actions
128 lines (103 loc) · 2.75 KB
/
default.css
File metadata and controls
128 lines (103 loc) · 2.75 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
@charset "utf-8";
/*
* Default theme for paperight.com, to be added to themes.css snippet to modify built-in theming
* Created by Arthur Attwell arthurattwell.com
*/
/* PAPERIGHT CLOSURE ANNOUNCEMENT */
#header {
padding-top: 7em;
}
#header:before {
content: "We're sorry, Paperight has closed. Outlets can still get exam papers and classics for free.";
position: fixed;
height: 2em;
background-color: #FFFF66;
width: 100%;
text-align: center;
padding: 3.3em 0 0 0;
margin: -6em 0 0em 0;
font-size: x-large;
z-index: 100;
box-shadow: 0 1px 3px #888888;
}
/* -------------------- Default theme logo */
#logo-panel a { width:100px; height:118px; background:url(/themes/default/images/logo.png) no-repeat 0 0; display:block; }
/* -------------------- Paperight team adjustments from default theme CSS overrides */
ul, ol {
margin-bottom: 1em;
}
/* -------------------- Make input text darker */
input[type="text"], input[type="password"] {
color: #222222;
}
/* -------------------- Override restrictive height setting in Latest Transactions table in sales dashboard */
.product-ui-tn-label {
height: auto;
min-height: 60px;
}
/* -------------------- Make impersonate warning message float and always visible */
#impersonate-message {
z-index: 99;
left: 10px;
top: 10px;
position: fixed;
}
/* -------------------- Appearance of thumbnails in 'related products' metadata on product page */
img.related-products-thumbnail {
border: 1px solid #e5e5e5 !important;
}
/* -------------------- Hide unnecessary stuff on error pages */
.error #intro-video, .error #deck {
display: none;
}
/* -------------------- Put search panel above other elements */
#search-panel {
z-index: 1;
}
/* -------------- Clean up appearance of footer */
#footer .wrapper .navigation {
text-align: center;
margin: 1.5em 3em 3em 3em;
}
#footer .wrapper .navigation ul li a {
font-size: 14px;
}
#footer .wrapper .accolades {
border-top: 1px solid #f2f2f2;
padding: 2em 0 0 0;
position: absolute;
}
#footer .wrapper .logos {
display: none;
}
/* Improve appearance of 'Download free preview' link */
.preview {
float: right;
margin-right: 2em;
}
.preview a.btn-preview {
border: 1px solid #ccc;
padding: 0.5em;
border-radius: 0.5em;
}
.preview a.btn-preview:hover {
background-color: #f2f2f2;
}
/* Add buttony link, e.g. a help link on productDetailLoggedIn */
a.process-help-link {
border: 1px solid #f2f2f2;
padding: 0.5em;
border-radius: 0.5em;
margin: 0 2em;
font-weight: normal;
font-size: 12px;
color: #bbb;
}
a.process-help-link:hover {
background-color: #f2f2f2;
border: 1px solid #ccc;
}
/* Fix width of article layouts */
.columns {
margin: 40px;
}