Skip to content

Commit 57ab837

Browse files
committed
Abandoning hyde
1 parent 7105ca2 commit 57ab837

File tree

3 files changed

+46
-11
lines changed

3 files changed

+46
-11
lines changed

css/ssl.scss

+36-6
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
$slicer-breakpoint-names: 'xs' 's' 'm' 'l' 'xl';
88

99
$s-sidebar-width: 100%;
10-
$m-sidebar-width: 13rem;
11-
$l-sidebar-width: 17rem;
10+
$m-sidebar-width: 16rem;
11+
$l-sidebar-width: 20rem;
1212
$side-pad-left: 1rem;
1313

1414
html {
@@ -111,16 +111,46 @@ a.sidebar-nav-item {
111111

112112
}
113113

114+
.full-content {
115+
@include to('s') { margin-left: 0; }
116+
@include from('m') { margin-left: $m-sidebar-width; }
117+
@include from('l') { margin-left: $l-sidebar-width; }
118+
}
119+
120+
#photo-wrapper {
121+
overflow: hidden;
122+
text-align: center;
123+
124+
#photo {
125+
display: block;
126+
height: 18rem;
127+
margin: 0 -100px;
128+
}
129+
}
130+
114131
.content {
132+
$content-margin: 5%;
115133
@include to('s') { margin-left: 0; }
116-
@include from('m') { margin-left: #{$m-sidebar-width}; }
117-
@include from('l') { margin-left: #{$l-sidebar-width}; }
134+
@include from('m') {
135+
margin-left: $content-margin;
136+
margin-right: $content-margin;
137+
}
138+
139+
max-width: 600px; // limit lines for readability
118140
}
119141

142+
120143
.banner {
121-
background-color: #dfdfdf;
144+
background-color: #f5f5f5;
122145

123-
padding: 4rem 10% 4rem 10%;
146+
font-size: 1.5rem;
147+
color: #666;
148+
149+
padding: 1rem 1rem;
150+
151+
@include from('m') {
152+
margin-top: 3rem;
153+
}
124154
}
125155

126156
.mission-statement {

images/alligator2.jpg

1.46 MB
Loading

index.html

+10-5
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,18 @@
1111
<div class="outer">
1212
{% include sidebar.html %}
1313

14-
<div class="content">
15-
<div class='banner'>
16-
<h4 class='mission-statement'>
17-
The Secure Systems Laboratory at the NYU Tandon School of Engineering exists to identify and design solutions for security threats to software systems
14+
<div class='full-content'>
15+
<div id='photo-wrapper'>
16+
<img id='photo' src='images/alligator2.jpg' />
17+
</div>
18+
<div class="content">
19+
<div class='banner'>
20+
<h4 class='mission-statement'>
21+
The Secure Systems Laboratory at the NYU Tandon School of Engineering exists to identify and design solutions for security threats to software systems
22+
</div>
1823
</div>
24+
1925
</div>
20-
2126
</div>
2227
</div>
2328
</body>

0 commit comments

Comments
 (0)