File tree Expand file tree Collapse file tree 3 files changed +41
-1
lines changed Expand file tree Collapse file tree 3 files changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -21,4 +21,5 @@ Experiments in drawing and animating with pure CSS.
21
21
17 . [ Ubuntu logo] ( /ubuntu ) - [ CodePen] ( https://codepen.io/trueskawka/pen/mLKaLw )
22
22
18 . [ Adobe logo] ( /adobe ) - [ CodePen] ( https://codepen.io/trueskawka/pen/mLKQXy )
23
23
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 )
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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 >
You can’t perform that action at this time.
0 commit comments