Skip to content

Instantly share code, notes, and snippets.

@udf
Last active September 9, 2020 07:51
Show Gist options
  • Save udf/790e614d85def3daaf81545978b19080 to your computer and use it in GitHub Desktop.
Save udf/790e614d85def3daaf81545978b19080 to your computer and use it in GitHub Desktop.
Change your teams picture to something slightly different to subtly annoy your colleagues! (use Firefox's built in screenshot to save the image)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<style>
@font-face {
font-family: 'SegoeUI';
src: url('//c.s-microsoft.com/static/fonts/segoe-ui/west-european/Semibold/latest.woff2') format("woff2"), url('//c.s-microsoft.com/static/fonts/segoe-ui/west-european/Semibold/latest.woff') format("woff"), url('//c.s-microsoft.com/static/fonts/segoe-ui/west-european/Semibold/latest.ttf') format("ttf");
font-weight: 600
}
.container {
width: 640px;
height: 640px;
display: flex;
align-items: center;
justify-content: center;
}
.text {
font-family: 'SegoeUI';
font-weight: 600;
font-size: 260px;
margin: 0;
padding: 0;
/* Hack to fix alignment */
padding-right: 16px;
padding-bottom: 30px;
}
.colour-1 {
background-color: #d6d4e9;
color: #282155;
}
.colour-2 {
background-color: #f2d5cd;
color: #6a2310;
}
</style>
</head>
<body>
<div class="container colour-1">
<span class="text">XY</span>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment