Newer
Older
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
/************* TARIFS *************/
/******* price tab ********/
.headband {
background-color: var(--ifm-color-frame);
border-radius: var(--ifm-button-border-radius);
padding-bottom: 2px;
padding-top: 10px;
margin-bottom: -30px;
width: 170px;
margin-left: auto;
margin-right: auto;
}
.headband p {
font-weight: 600;
color: var(--ifm-color-success);
}
.price {
text-align: center;
}
.card_price {
background-color: var(--ifm-color-secondary-lightest);
margin-top: 20px;
margin-bottom: 20px;
}
.tabs-etang .tabs__item {
line-height: 16px;
margin: 4px;
padding: 0.5em;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 100%;
text-align: center;
}
.tabs-etang .tabs__item--active {
background-color: var(--ifm-color-light-green);
border: 0;
border-radius: var(--ifm-global-radius);
color: var(--ifm-color-white);
}
.tabs-etang-hide {
display: none;
}
/******** Monthly & annual buttons********/
.tabs-monthly-annual {
margin-top: 30px;
margin-bottom: 30px;
width: 21rem;
height: 3.7rem;
margin-left: auto;
margin-right: auto;
}
.tabs-monthly-annual .tabs__item {
line-height: 50px;
margin: 10px;
padding: 0.2em;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 100%;
text-align: center;
background-color: var(--ifm-button-selection);
color: var(--ifm-color-light-green);
border: 2px solid var(--ifm-color-light-green);
}
.tabs-monthly-annual .tabs__item:hover {
transition: 0.4s;
background-color: var(--ifm-color-light-green);
color: var(--ifm-color-white);
border: 2px solid var(--ifm-color-light-green);
}
.tabs-monthly-annual .tabs__item--active {
border: 0;
border-radius: var(--ifm-global-radius);
color: var(--ifm-color-white);
background-color: var(--ifm-color-light-green);
}
/********Buttons in cards ********/
.button-noclick:not(.button--outline) {
color: var(--ifm-color-secondary-darkest);
border: 2px solid var(--ifm-color-secondary-darkest);
}
.button--price:not(.button--outline) {
background-color: var(--ifm-button-selection);
color: var(--ifm-color-light-green);
border: 2px solid var(--ifm-color-light-green);
}
.button--price:not(.button--outline):hover {
background-color: var(--ifm-color-light-green);
color: var(--ifm-color-white);
border: 2px solid var(--ifm-color-light-green);
}
/******** Text in cards ********/
.small_price {
font-size: 12px;
}
/******** Disabled cards ********/
.disable_col p, .disable_col h2 {
color: var(--ifm-color-secondary-darkest);
}
.disable_col, .card-demo {
margin-top: 50px;
box-shadow: var(--ifm-global-shadow-tl);
border-radius: var(--ifm-card-border-radius);
}