-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-area.css
95 lines (77 loc) · 1.25 KB
/
main-area.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
#previous-work,
#previous-training,
#voluntary-work {
display: none;
}
.main-content-full {
padding: 17px;
}
/* Fullstack */
#fullstack p:first-of-type {
margin: 0;
}
#fullstack p:last-of-type {
margin: 8px 0 0 0;
}
#fullstack ul {
margin: 8px 5px 0;
padding: 0 8px;
}
#curriculum {
display: flex;
flex-direction: column;
}
#first-year,
#second-year {
padding-top: 17px;
}
dl {
margin: 0;
padding: 0;
}
dt {
margin: 5px 0 0 0;
}
dd {
margin-left: 22px;
}
/* Previous work */
#previous-work dt:first-of-type {
margin: 0;
}
#previous-work dd:nth-of-type(odd) {
padding-top: 2px;
}
#previous-work dd:nth-of-type(even) {
padding-bottom: 5px;
border-bottom: 1px solid grey;
}
#previous-work dd:last-of-type {
border-bottom: 0;
}
/* Previous training */
#previous-training dt:first-of-type {
margin: 0;
}
#previous-training dd {
padding: 2px 0 5px;
border-bottom: 1px solid grey;
}
#previous-training dd:nth-of-type(6) {
padding-bottom: 0;
border-bottom: 0;
}
#previous-training dd:last-of-type {
border-bottom: 0;
}
/* Voluntary work */
#voluntary-work dt:first-of-type {
margin: 0;
}
#voluntary-work dd {
padding: 2px 0 5px;
border-bottom: 1px solid grey;
}
#voluntary-work dd:last-of-type {
border-bottom: 0;
}