Skip to content

Commit 3c9a633

Browse files
committed
Add Microsoft logo
1 parent 5d10517 commit 3c9a633

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ Experiments in drawing and animating with pure CSS.
2121
17. [Ubuntu logo](/ubuntu) - [CodePen](https://codepen.io/trueskawka/pen/mLKaLw)
2222
18. [Adobe logo](/adobe) - [CodePen](https://codepen.io/trueskawka/pen/mLKQXy)
2323
19. [Twilio logo](/twilio) - [CodePen](https://codepen.io/trueskawka/pen/pVKQWr)
24-
20. [YouTube logo](/youtube) - [CodePen](https://codepen.io/trueskawka/pen/ZoRVyw)
24+
20. [YouTube logo](/youtube) - [CodePen](https://codepen.io/trueskawka/pen/ZoRVyw)
25+
21. [Microsoft logo](/microsoft) - [CodePen](https://codepen.io/trueskawka/pen/mLKQPZ)

microsoft/microsoft.css

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
body {
2+
background-color: white;
3+
height: 100%;
4+
display: flex;
5+
align-items: center;
6+
justify-content: center;
7+
}
8+
9+
.container {
10+
position: relative;
11+
height: 400px;
12+
}
13+
14+
.microsoft {
15+
/* colors */
16+
/* blue #00a1f1 */
17+
/* green #7cbb00 */
18+
/* yellow #ffbb00 */
19+
/* red #f65314 */
20+
height: 200px;
21+
width: 200px;
22+
23+
background: #f65314;
24+
25+
box-shadow:
26+
210px 0 0 0 #7cbb00,
27+
0px 210px 0 0 #00a1f1,
28+
210px 210px 0 0 #ffbb00;
29+
}

microsoft/microsoft.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<html>
2+
<head>
3+
<link rel="stylesheet" href="microsoft.css">
4+
</head>
5+
<body>
6+
<div class="container">
7+
<div class="microsoft"></div>
8+
</div>
9+
</body>
10+
</html>

0 commit comments

Comments
 (0)