-
Notifications
You must be signed in to change notification settings - Fork 1
/
landing.css
78 lines (63 loc) · 916 Bytes
/
landing.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
/* Social (header)
/*-----------------------*/
.social {
margin: 10px 0 30px 0;
}
.social li {
display: inline;
font-size: 18px;
letter-spacing: 2px;
padding-left: 0px;
}
.social li a {
color: #3a3a3a;
}
.social li a:hover {
color: #34A9FF;
}
.social span {
padding: 0 20px;
}
/* About
/*-----------------------*/
.about {
margin-bottom: 30px;
}
.about p {
color: #3a3a3a;
font-size: 18px;
line-height: 22px;
}
.about span {
font-weight: 600;
}
.bio {
width: 80%;
text-align: justify;
}
/* Work
/*-----------------------*/
.work {
margin-bottom: 30px;
}
.work a {
color: #3a3a3a;
}
.work a:hover {
color: #34A9FF;
}
.work span {
font-style: italic;
font-size: 18px;
padding-left: 15px;
}
/* Media Queries
/*-----------------------*/
@media (max-width: 640px) , (max-height: 640px) and (orientation:landscape) {
.bio {
width: 100%;
}
.social span {
padding: 0 16px;
}
}