blob: b5b191ff5c17def72d66855d42b8bf8adffad209 (
plain)
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
|
#content .container {
background: #f3f3f3;
box-shadow: 0px 0px 15px rgba(55, 55, 55, 0.5);
margin-bottom: 50px;
}
.side-wrapper {
padding: 0;
}
.side-wrapper > div {
padding: 10px;
}
.job-title {
background: #eee;
text-align: center;
padding: 15px;
}
.job-title h3 {
margin: 0;
}
.personal-data {
padding: 15px;
}
.summary {
padding: 15px;
background: #fff;
}
.summary h3 {
margin: 0;
}
.skills .container-fluid {
border-left: 5px solid #0275d8;
}
.skills .container-fluid h2 {
margin: 0;
padding-bottom: 10px;
}
.skills .skill {
margin-bottom: 2px;
}
.skills .skill .percentage {
border-radius: 5px;
background: #eee;
padding: 0;
}
.skills .skill .percentage > div {
border-radius: 5px;
background: #0275d8;
}
.experiences .section {
padding: 0 0 0 15px;
border-left: 5px solid #0275d8;
}
.experiences .section h2 {
margin: 0;
}
@media(max-width: 767px) {
.skills .skill .percentage {
border-radius: 0px 5px 5px 0px;
}
.skills .skill .percentage > div {
border-radius: 0px 5px 5px 0px;
}
}
|