-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (98 loc) · 1.5 KB
/
Copy pathstyle.css
File metadata and controls
121 lines (98 loc) · 1.5 KB
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
html {
font-family: 'Cardo', serif;
font-size: 1.5em;
line-height: 1.2em;
background-color: #f4f3f4;
color: #464646;
}
body {
margin: 0;
padding: 0;
}
a,
a:visited,
a:hover,
a.active, a.active:hover,
a:link {
color: #464646;
text-decoration: none;
text-shadow: -2px -2px #f4f3f4, -2px 2px #f4f3f4, 2px -2px #f4f3f4, 2px 2px #f4f3f4;
box-shadow: inset 0 -.075em #464646, inset 0 -.075em #464646;
}
li, ol {
list-style-type: none;
padding: 0;
margin: 0;
}
ol {
padding-top: 10px;
}
p {
padding-top: 0;
margin-top: 0;
}
#text, #image {
padding: 40px;
float: left;
}
#text {
width: calc(50%);
max-width: 600px;
}
#text li {
line-height: 1em;
margin-bottom: .7em;
}
#image {
position: relative;
width: calc(30%);
max-width: 450px;
}
#image img {
width: 100%;
height: 100%;
}
#image span {
display: block;
font-size: .5em;
font-style: italic;
padding-left: 1em;
}
#image span a {
border-bottom: #464646 solid 1px;
}
#contact {
position: absolute;
top: 20px;
right: -20px;
padding: 25px;
padding-top: 35px;
border-radius: 70px;
transform: rotate(-10deg);
background: url(burst.png);
background-size: contain;
background-repeat: no-repeat;
}
#contact p {
height: 85px;
width: 85px;
font-size: .6em;
line-height: 1em;
margin: 0;
padding: 0;
font-family: 'Bangers', cursive;
text-align: center;
color: #1E2126;
}
@media only screen and (max-width: 1122px) {
body {
width: 500px;
}
#text, #image {
float: none;
width: 100%;
}
#text {
padding-bottom: 0;
}
}