-
Notifications
You must be signed in to change notification settings - Fork 322
/
Copy pathgovernance.scss
executable file
·80 lines (68 loc) · 2.05 KB
/
governance.scss
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
// GOVERNANCE
//------------------------------------------------
//------------------------------------------------
.governance {
// background: $gray-nutshell;
.vertical-buttons-list {
@include display(flex);
@include flex-direction(column);
@include justify-content(space-between);
padding: 15px 0;
li {
margin-bottom: 10px;
}
// @include align-items(center);
// @include justify-content(flex-start);
}
.button-expand {
text-align: center;
display: block;
}
.button-more {
font-size: $font-size-small;
padding: 5px;
cursor: pointer;
}
.scala-items-list {
.items-menu {
.scala-item {
@include span-columns(4);
@include omega(3n);
@include display(flex);
@include flex-direction(column);
// @include align-items(center);
@include justify-content(space-between);
padding: 15px 10px;
text-align: center;
transition: $base-transition;
// border: 1px solid $gray-light;
margin-top: 15px;
@include bp(large) {
@include span-columns(12);
}
min-height: 150px;
h4 {
font-size: $font-size-h3;
color: #000;
text-transform: uppercase;
font-family: $base-font-family;
margin-bottom: 10px;
}
p {
font-size: $font-size-medium;
}
&.active {
background: $gray-light;
}
}
.items-content {
background: $gray-light;
transition: $base-transition;
.items-code {
display: none;
padding: 5px 0;
}
}
}
}
}