-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (84 loc) · 1.33 KB
/
style.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
@link url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic);
@link url(https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700);
h1, h2, h3 {
font-family: 'Lato';
font-weight: 700
}
body {
font-size: 13px;
font-family: 'Lato';
}
section {
display: flex;
}
span {
margin: 1em;
padding: 1em;
}
ul.categories,
div.fiches {
display: flex;
padding: .5em;
list-style: none;
}
ul.categories {
border-top: 1px solid grey;
margin: 1em;
padding: 0;
padding-right: 1em;
font-size: 1.5em;
flex-direction: column;
}
ul.categories a {
border: 1px solid grey;
border-top: none;
display: block;
padding: .5em;
width: 100%;
text-decoration: none;
}
ul.categories a.selected {
background: #ccc;
}
div.fiches {
flex-wrap: wrap;
}
article {
border: 0px solid grey;
padding: .5em;
margin: 1em;
}
article.detailFiche {
width: 90%;
margin: .5em;
padding: .5em;
}
article.detailFiche i {
margin: .5em;
padding: .5em;
}
.dateFiche {
display: block;
}
article.resume {
width: 40%;
display: flex;
flex-direction: column;
justify-content: space-between;
background-color: #ccc;
}
article.resume h2 img {
float = right;
padding-left: 2em;
}
article h2 {
font-size: 1.1em;
width: 95%;
}
article h2 i {
float: right;
padding-left: 2em;
}
article p {
width: 100%;
}