-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewAccueil.css
120 lines (109 loc) · 2.1 KB
/
viewAccueil.css
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
.jumbotron{
background-repeat: no-repeat;
background-position: center;
background-color: black;
}
h4 {
font-family: "Helvetica";
font-weight: 500;
font-size: 14px;
color: #aeaeae;
text-transform: uppercase;
margin: 0;
}
hr {
margin-bottom: 16px;
border: 1px solid #eaeaea;
}
.border-card {
background: #fff;
margin-bottom: 30px;
display: flex;
align-items: center;
font-family: "Roboto";
font-size: 14px;
padding: 12px 16px;
cursor: pointer;
border-radius: 4px;
border: 1px solid #eaeaea;
box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.1);
transition: all 0.25s ease;
}
.border-card:hover {
-webkit-transform: translateY(-1px);
transform: translateY(-1px);
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1), 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.border-card.over {
background: rgba(70, 222, 151, 0.15);
padding-top: 24px;
padding-bottom: 24px;
border: 2px solid #47DE97;
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0), 0 5px 10px 0 rgba(0, 0, 0, 0);
}
.border-card.over .card-type-icon {
color: #47DE97 !important;
}
.border-card.over p {
color: #47DE97 !important;
}
.content-wrapper {
display: flex;
justify-content: flex-start;
width: 100%;
white-space: nowrap;
overflow: hidden;
transition: all 0.25s ease;
}
.min-gap {
flex: 0 0 40px;
}
.card-type-icon {
flex-grow: 0;
flex-shrink: 0;
margin-right: 16px;
font-weight: 400;
color: #323232;
border-radius: 50%;
width: 40px;
height: 40px;
text-align: center;
line-height: 40px;
font-size: 14px;
transition: all 0.25s ease;
}
.card-type-icon.with-border {
color: #aeaeae;
border: 1px solid #eaeaea;
}
.card-type-icon i {
line-height: 40px;
}
.label-group {
white-space: nowrap;
overflow: hidden;
}
.label-group.fixed {
flex-shrink: 0;
}
.label-group p {
margin: 0px;
line-height: 21px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.label-group p.title {
color: #323232;
font-weight: 500;
}
.label-group p.title.cta {
text-transform: uppercase;
}
.label-group p.caption {
font-weight: 400;
color: #aeaeae;
}
.end-icon {
margin-left: 16px;
}