-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
125 lines (124 loc) · 2.52 KB
/
main.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
color: #5F6A63;
font-size: 16px;
font-family: 'Istok Web', sans-serif;
}
a:link, a:hover, a:active, a:visited {
text-decoration:none;
color: #5F6A63;
}
.line>div {
display: inline-block;
padding: 0px 5px;
}
#header {
width: 100%;
}
#summary {
padding: 25px 100px 25px 250px;
background: #C6DDC9;
background-image: -webkit-gradient(linear,50% 0,0 100%, from(transparent), color-stop(.5,transparent), color-stop(.5,white), to(white) ), -webkit-gradient(linear,50% 0,100% 100%, from(transparent), color-stop(.5,transparent), color-stop(.5, white), to(white) );
background-size:30px 15px;
background-repeat:repeat-x;
background-position:0 100%;
}
#summary .name {
color: #37453C;
}
#summary .position {
color: #9BA29D;
}
#summary .name, #summary .position {
font-family: 'Bangers', cursive;
font-size: 24px;
}
#photo {
height: 150px;
width: 150px;
top: 35px;
left: 50px;
border-radius: 50%;
background: #A9CDAE;
background-image: url(https://media.licdn.com/mpr/mpr/shrinknp_400_400/AAEAAQAAAAAAAAaXAAAAJDJiYmNmNGNjLWU3Y2QtNDkzZi1hMWI0LTIzNjlhMDc5ZDc4OQ.jpg);
background-position: center;
position: absolute;
}
#photo:after {
padding: 68px;
border-radius: 50%;
border: 2px dashed #8DBC94;
content: '';
position: absolute;
top: 4px;
left: 4px;
}
#contact {
padding: 10px 0px 10px 245px;
}
.block {
margin-top: 30px;
}
.block ul {
list-style: decimal;
}
#content-left .title {
font-family: 'Bungee', cursive;
margin: 10px 0;
direction: rtl;
}
#content-right .title {
font-family: 'Bungee', cursive;
margin: 10px 0;
direction: ltr;
}
#interest .interest {
font-size: 36px;
}
.item .header {
padding: 5px 0px;
}
.item .header > div {
display: inline-block;
padding: 2px 10px;
}
.item .header .date {
background: #C6DDC9;
text-align: center;
}
.item .detail {
}
.progress-bar {
background: #C6DDC9;
}
.project {
padding-top: 10px;
}
@media only screen and (max-device-width: 480px) {
#photo {
left: 25px;
height: 100px;
width: 100px;
}
#photo:after {
padding: 44px;
}
#summary {
padding: 150px 20px 25px 20px;
}
#contact {
padding: 0 15px;
position: absolute;
top: 40px;
left: 125px;
}
#content-left .title {
direction: ltr;
}
ul {
-webkit-padding-start: 20px;
}
}