Projet

Général

Profil

Paste
Télécharger (1,79 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / adminimal_theme / css / homebox_custom.css @ eefc2ac0

1
/*
2
* @file
3
* Includes style for homebox module boxes
4
*
5
* Includes proper styling for homebox module when enabled. Includes style for boxes
6
* and icons for the box actions
7
*/
8

    
9
#homebox-buttons {
10
  margin: 20px 0 10px;
11
}
12
#homebox-buttons a {
13
  padding: 0px 20px;
14
  font-family: "Helvetica", sans-serif;
15
  font-size: 14px;
16
  font-weight: bold;
17
  background: #fff;
18
  line-height: 30px;
19
  border: 2px solid #0074BD;
20
  margin: 5px auto;
21
  border-radius: 100px;
22
  display: inline-block;
23
  transition: all, 0.3s;
24
}
25
#homebox-buttons a:hover {
26
  text-decoration: none;
27
  background: #0074BD;
28
  color: #fff;
29
}
30

    
31
#homebox .homebox-column {
32
  background: transparent;
33
}
34

    
35
#homebox .homebox-portlet {
36
  border: none;
37
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
38
  margin-bottom: 15px;
39
}
40
#homebox .homebox-portlet .portlet-header {
41
  font-size: 15px;
42
  padding: 8px 13px;
43
  background-color: #F3F4EE;
44
  color: #333;
45
}
46

    
47
/* Just some support for views on homebox portlets */
48
#homebox .homebox-portlet .view .view-footer{
49
  padding: 5px;
50
}
51

    
52
/*
53
* Material style
54
*/
55
body.adminimal-skin-material #homebox-buttons a {
56
  text-transform: uppercase;
57
  font-weight: 500;
58
  font-size: 15px;
59
  background: #2196f3;
60
  border: none;
61
  color: #FFFFFF;
62
  padding: 3px 20px 2px;
63
  border-radius: 3px;
64
  display: inline-block;
65
}
66
body.adminimal-skin-material #homebox-buttons a:hover {
67
  background: #29B6F6;
68
  text-decoration: none;
69
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
70
}
71

    
72
body.adminimal-skin-material #homebox .homebox-portlet {
73
  border: none;
74
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
75
  background: #fff;
76
  border-radius: 3px;
77
}
78
body.adminimal-skin-material #homebox .homebox-portlet-inner {
79
  border: none;
80
}
81
body.adminimal-skin-material #homebox .homebox-portlet .portlet-header {
82
  font-family: Roboto, sans-serif;
83
  font-size: 15px;
84
  font-weight: 500;
85
}