Bug 24610: Let user switch between 'Pay' and 'Write off' mode
[koha.git] / koha-tmpl / intranet-tmpl / prog / css / mainpage.css
blob4496ceb86044d865c9fabb2699fa2e9496b6e796
1 /*
2 * This file contains CSS styles used only on the front page of Koha
4 * COLORS
5 * Very light blue Module links background : #f4f8f9
6 * Light blue Navbar, breadcrumb : #e6f0f2
7 * Blue Module links and breadcrumb border : #b9d8d9
8 * Dark blue Links : #004d99
9 * Green Links:hover : #538200
10 * These colors are used in staff-global.css too
14 #container-main {
15 /* Contains the news + both columns of links + pending box + userblock box */
16 background-image:url('../img/background_koha_logo.png');
17 background-repeat:no-repeat;
18 background-position:left top;
19 padding: 1em 0;
23 /* ==== NEWS - Start ==== */
25 #area-news {
26 border: 1px solid #EEEEEE;
27 border-radius: 6px 6px 6px 6px;
28 margin: 0.2em;
31 #area-news h3 {
32 /* Title section for the news block : transparency to let the koha logo appear */
33 background-color: #EEEEEE;
34 filter:alpha(opacity=70); /* for IE */
35 -moz-opacity: 0.7; /* for Firefox before 0.9 */
36 opacity: 0.7;
37 padding : .3em; margin: 0;
40 .newsitem {
41 /* Block for one News entry */
42 padding: 3px;
43 margin: .3em;
44 border-bottom: 1px solid #EEE;
45 background-color : #ffffff;
46 border-radius: 6px;
47 filter:alpha(opacity=75);
48 -moz-opacity: 0.75;
49 opacity: .75;
52 .newsfooter {
53 /* Footer containing the publication date and edition links for an News entry */
54 font-size: 80%;
55 color: #808080;
58 /* ==== NEWS - End ==== */
61 /* ==== MODULE LINKS - Start ==== */
63 ul.biglinks-list {
64 /* List containing the module links */
65 padding: 0px;
68 ul.biglinks-list li {
69 /* Standard attributes for the list elements */
70 list-style-type:none;
73 ul.biglinks-list li a.icon_general {
74 /* Class used for each module link */
75 display: block;
76 box-sizing: content-box;
77 max-width : 320px;
78 height: 46px;
79 margin: 0 1em 14px 0;
80 padding-left:57px;
81 padding-top:5px;
83 border: solid 2px #b9d8d9;
84 border-radius: 6px;
86 text-decoration: none;
87 font-family: verdana, arial;
88 font-weight: bold;
89 font-size: large;
90 color: #000000;
92 background-color:#f4f8f9;
93 background-position: 5px 3px;
94 background-repeat:no-repeat;
97 ul.biglinks-list li a:hover.icon_general {
98 /* Class used for each module link hover state */
99 color: #538200;
100 border-color: #538200;
103 /* CSS Font Awesome */
104 ul.biglinks-list .fa, ul.biglinks-list img {
105 position: absolute;
106 left: 1em;
107 font-size: 1.5em;
108 width: 35px;
111 /* ==== MODULE LINKS - End ==== */
114 /* ==== PENDING - Start ==== */
115 #area-pending {
116 /* Block containing links to pending tags, comments and suggestions */
117 width: 100%;
118 border: solid 1px #b9d8d9;
119 border-radius: 6px;
120 clear: left;
123 .pending-info {
124 /* For the div containing a "pending" link (useful to preserve width of area-pending box width) */
125 margin-top: 2px;
126 margin-bottom: 2px;
127 margin-left: 8px;
130 .pending-number-link {
131 /* Style for the "pending" links : the number of pending items appear bigger */
132 font-weight: bold;
133 font-size: 1.1em;
135 /* ==== PENDING - End ==== */
138 /* ==== USERBLOCK - Start ==== */
139 #area-userblock {
140 /* Appears if the "IntranetmainUserblock" system preference is defined */
141 margin-top: 10px;
142 width: 100%;
143 border: solid 1px #b9d8d9;
144 border-radius: 6px;
148 .user-info {
149 /* For the div containing the information (useful to preserve width of area-userblock box width) */
150 margin: 8px;
152 /* ==== USERBLOCK - End ==== */
154 .intranet-main .row {
155 margin-left: 0;
156 margin-right: 0;