-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (61 loc) · 1.04 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
body {
margin: 0;
font-family: 'Roboto', sans-serif;
display:grid;
grid-template-columns: auto 1fr;
background-color: #fafafa;
}
.divider {
border-bottom: 1px solid #000;
margin: 3rem 0;
}
.little-divider {
border-bottom: 1px dotted #000;
margin: 1rem 0;
}
body > *:first-child {
background-color: #e3e3e3;
}
article {
margin-left: 1rem;
}
.side-bar {
position: sticky;
top: 0;
padding: 1rem;
gap: 1rem;
}
main {
padding: 1rem;
}
.experience-precisions * {
padding: 0;
margin: 0.2rem;
}
.material-symbols-outlined {
font-variation-settings:
'FILL' 1,
'wght' 400,
'GRAD' 0,
'opsz' 48
}
.icon {
width: 1.5em;
}
.contact-list{
display: grid;
grid-template-columns: max-content 1fr;
grid-template-rows: auto auto auto;
padding: 0;
grid-gap: 0.5rem;
align-items: center;
}
.contact-list > *:nth-child(odd) {
justify-self: center;
}
.activites {
list-style-type: square;
}
.technos {
list-style-type: circle;
}