-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.css
166 lines (166 loc) · 3.02 KB
/
portfolio.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/**
* The website takes a mobile-first approach, scaling up and showing more elements and different layouts as the screen size grows.
*/
body,
html {
height: 100%;
}
p::selection,
h1::selection,
h2::selection,
li::selection {
background: #e74c3c;
color: #ecf0f1;
}
p::moz-selection,
h1::moz-selection,
h2::moz-selection,
li::moz-selection {
background: #e74c3c;
color: #ecf0f1;
}
h1 span::selection {
background: #e74c3c;
color: #ecf0f1;
}
h1 span::moz-selection {
background: #e74c3c;
color: #ecf0f1;
}
body {
background: #ecf0f1;
color: #4c4c4c;
font-size: 50%;
line-height: 18px;
min-width: 300px;
}
body span.highlight {
color: #e74c3c;
}
body p {
font-family: 'Lato', 'Trebuchet MS', 'Sans serif';
color: #4c4c4c;
font-size: 2.5em;
line-height: 1.5em;
}
body a {
color: #e74c3c;
}
body a:hover {
text-decoration: none;
font-weight: bold;
}
body a:visited {
color: #e74c3c;
text-decoration: none;
}
body h1 {
font-family: 'Lato', 'Trebuchet MS', 'Sans serif';
font-weight: 100;
color: #4c4c4c;
font-size: 5.5em;
}
body h2 {
font-family: 'Lato', 'Trebuchet MS', 'Sans serif';
font-weight: 100;
color: #4c4c4c;
font-size: 3em;
}
body h3 {
font-family: 'Lato', 'Trebuchet MS', 'Sans serif';
font-weight: 100;
color: rgba(0, 0, 0, 0.5);
font-size: 2em;
}
body h4.swift {
color: #4c4c4c;
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
margin: 20px 0px;
font-size: 1.6em;
line-height: 2.5em;
text-align: left;
}
body h4.swift .interactive {
color: #e74c3c;
}
body h4.swift .interactive:hover {
cursor: pointer;
font-weight: bold;
}
body h4.swift span::selection {
background: rgba(0, 0, 0, 0);
color: #27ae60;
}
body h4.swift span::moz-selection {
background: rgba(0, 0, 0, 0);
color: #27ae60;
}
body h4::selection {
background: rgba(0, 0, 0, 0);
color: #27ae60;
}
body h4::moz-selection {
background: rgba(0, 0, 0, 0);
color: #27ae60;
}
body .document {
height: 100%;
font-size: 2em;
font-family: 'Lato', 'Trebuchet MS', 'Sans serif';
text-align: center;
}
body .document a {
color: #4c4c4c;
}
body .document a img {
width: 50%;
display: block;
position: relative;
left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%);
}
body .document a:hover,
body .document a:visited {
text-decoration: none;
}
body .document a:hover {
font-weight: bold;
}
body .indented {
position: relative;
}
body .background {
width: 100%;
}
body .test {
background: #bdc3c7;
}
body #content-background {
z-index: 0;
background: #ecf0f1;
position: relative;
top: 100%;
}
body #content-background section.placeholder {
height: 400px;
}
@media (min-width: 768px) {
body h4.swift {
font-size: 2.2em;
margin: 50px 0px;
}
}
@media (min-width: 992px) {
body {
font-size: 52%;
}
}
@media (min-width: 1200px) {
body {
font-size: 60%;
}
}