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
|
/*=== Configuration pages */
.post {
padding: 1rem 2rem;
font-size: 1rem;
form {
margin: 1rem 0;
// Gestion des extensions
.horizontal-list{
margin-bottom: 0.5rem;
.item{
.stick{
// width: 65%;
// margin-right: 1rem;
// display:flex;
}
.btn{
// width: 8rem;
// flex-grow: 1;
}
}
}
}
&.content {
max-width: 550px;
}
h1, h2{ // pages titles
font-size: 3rem;
margin-top: 1.75rem;
font-weight: 300;
line-height: 1.2em;
// font-family: "spectral";
color: $main-font-color;
}
a[href="./"]{ // C'est le bouton "Retour à vos flux"
display: inline-block;
// min-height: 38px;
min-width: 15px;
line-height: 25px;
margin: 0;
padding: 0.75rem 1.5rem;
font-size: 1rem;
vertical-align: middle;
cursor: pointer;
overflow: hidden;
background: $grey-lighter;
border: 1px solid $grey-medium-light;
border-radius: 5px;
// border: none;
color: $grey-dark;
&:hover{
text-decoration: none;
background: $main-first;
color: white;
border: 1px solid $main-first;
}
}
}
#slider{
border-left: none;
-webkit-box-shadow: 0px 6px 8px 0px rgba(0,0,0,0.35);
-moz-box-shadow: 0px 6px 8px 0px rgba(0,0,0,0.35);
box-shadow: 0px 6px 8px 0px rgba(0,0,0,0.35);
}
.slide-container{
.properties{
background: rgba(0, 0, 0, 0.75);
border: 0;
padding: 1rem;
color: white;
.page-number{
right: 1rem;
top: 1rem;
}
}
}
|