-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdutch.css
85 lines (74 loc) · 1.37 KB
/
dutch.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
.header {
background: #f15e22;
margin-bottom: 25px;
position: relative;
box-shadow: 0 2px 2px #333;
/* */
display: flex;
flex-direction: column;
justify-content: space-between;
/* Background */
background: rgb(241,94,34);
background: linear-gradient(45deg, rgba(241,94,34,1) 13%, rgba(242,156,121,1) 100%);
}
.header .title-container {
padding-top: 80px;
padding-bottom: 80px;
color: #fefefe;
text-shadow: 0 0 2px #333;
}
.tags-container {
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
}
.tags-container .tag {
background: #252935;
color: #fff;
border-radius: 3px;
padding: 6px 12px;
margin-right: 7px;
margin-bottom: 5px;
}
.heading {
display: block;
background: rgb(241,94,34);
/* background: linear-gradient(90deg, rgba(241,94,34,1) 13%, rgba(255,255,255,1) 100%); */
color: #fff;
font-size: 1.1rem;
padding: 5px 15px;
margin-bottom: 12px;
font-weight: bold;
}
#content {
border-left: 2px solid #f3f3f3;
}
.experience {
display: flex;
flex-direction: row;
}
.exp-list {
display: flex;
flex-direction: column;
}
.exp-timeframe {
align-self: center;
text-align: center;
}
/*
.exp-content::before {
content: "";
display: block;
height: 100%;
width: 2px;
background: #333;
position: absolute;
left: -50px;
}
*/
.color-primary {
color: #f15e22;
}
.color-secondary {
color: #757575;
}