Skip to content

Commit

Permalink
I work at Cadence now
Browse files Browse the repository at this point in the history
  • Loading branch information
kneasle committed Jul 20, 2024
1 parent aa68726 commit 761e2b3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 33 deletions.
5 changes: 3 additions & 2 deletions main-page/about-me.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Hello! I'm Ben White-Horne, and I'm a sofware developer based in Cambridge, UK. During the day, I
work at [MathWorks](https://mathworks.com/) (of MATLAB fame) working mostly in C++. Before this,
I studied Computer Science at St Anne's College, Oxford.
work at [Cadence](https://www.cadence.com/en_US/home.html), writing chip optimizations in C++.
Before this, I worked at MathWorks and before that, I studied Computer Science at St Anne's College,
Oxford.

Outside of work, I often work on coding projects (such as this site) using whatever tech best suits
the project. Many of these projects (like [Wheatley](https://github.com/kneasle/wheatley) and
Expand Down
39 changes: 8 additions & 31 deletions main-page/sass/site.scss
Original file line number Diff line number Diff line change
Expand Up @@ -115,57 +115,34 @@ a:hover {
/* REST OF MAIN PAGE */

.about-section {
$padding: 25px;
$text-offset: 7px;

margin: 10px;
padding: ($padding - $text-offset) $padding;

background: $bg-color-dark;
border-radius: $border-radius;

@media only screen and (min-width: 1020px) {
display: flex;
flex-direction: row;
margin: 0;
}

div {
padding: 15px 15px;
}

$img-margin: 10px;

img {
margin: $img-margin !important;
margin: 0 !important;
margin-top: $text-offset !important;
border: 0 none !important;
background: none !important;
border-radius: $border-radius - $img-margin !important;
border-radius: ($border-radius - 20px) !important;

width: 200px;
height: 200px;

@media only screen and (min-width: 1020px) {
margin: 0 !important;
width: revert;
height: 100%;
}
}

img.me {
float: left;
margin-right: 30px !important;

@media only screen and (min-width: 1020px) {
margin-right: revert !important;
border-radius: $border-radius 0 0 $border-radius !important;
}
}

img.site {
float: right;
margin-left: 30px !important;

@media only screen and (min-width: 1020px) {
border-radius: 0 $border-radius $border-radius 0 !important;
margin-left: revert !important;
order: 2;
}
}
}

Expand Down

0 comments on commit 761e2b3

Please sign in to comment.