blob: 1f98e20a7bb567113a742f6dc64d7d7bac9adafb (
plain) (
blame)
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
|
#content {
max-width: 22em;
justify-content: start;
}
hr {
width: calc(100% - 1em);
color: black;
border: 1px solid black;
}
#navigation {
width: 100%;
display: flex;
}
#navigation > * {
flex: 1;
margin-left: .4em;
}
.submit-btn:first-of-type {
margin-left: 0 !important;
}
#all-languages, #all-technologies {
display: flex;
flex-wrap: wrap;
}
.flexbox {
display: flex;
}
.flexbox > * {
flex: 1;
margin-left: 1em;
}
.flexbox > *:first-child {
margin-left: 0;
}
|