Skip to content

Instantly share code, notes, and snippets.

@acid-chicken
Created July 17, 2017 06:26
Show Gist options
  • Save acid-chicken/171bbe5e98d1f97715d205998c56a956 to your computer and use it in GitHub Desktop.
Save acid-chicken/171bbe5e98d1f97715d205998c56a956 to your computer and use it in GitHub Desktop.
Visual Studio
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Splash Screen</title>
<style>
body {
font-family: 'Segoe UI';
font-size: 32px;
margin: 32px;
}
main {
background: #2d2d30;
border: 1px solid #252526;
color: #ffffff;
height: 598px;
width: 458px;
}
main::after {
border-left: 1px solid #424244;
content: ' ';
height: 40px;
left: 32px;
position: absolute;
top: 128px;
width: 1px;
}
p {
margin: 32px;
}
p::after {
border-color: transparent transparent transparent #4c4c4f;
border-style: solid;
border-width: 20px 0 20px 20px;
content: ' ';
left: 32px;
position: absolute;
top: 128px;
}
</style>
</head>
<body>
<main>
<p contenteditable="true">Visual Studio</p>
</main>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment