forked from kontur-web-courses/positioning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
63 lines (49 loc) · 1007 Bytes
/
Copy pathstyles.css
File metadata and controls
63 lines (49 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
.logo {
margin: 10px;
}
#Japan {
display: flex;
justify-content: center;
align-items: center;
background-color: white;
width: 100px;
height: 66px;
border: 1px solid black;
}
#JapanSun {
width: 40px;
height: 40px;
border-radius: 100%;
background-color: #BC002D;
}
#Mitsubishi {
box-sizing: border-box;
width: 0;
height: 0;
border: 0 solid transparent;
border-left-width: 50px;
border-right-width: 50px;
border-top: 0 solid transparent;
border-bottom: 87px solid black;
/*color: transparent;*/
}
.mitsuCut {
position: relative;
width: 0;
height: 0;
border: 0 solid transparent;
border-left-width: 17px;
border-right-width: 17px;
border-top: 0 solid transparent;
border-bottom: 29px solid white;
/*color: transparent;*/
}
#leftCut {
top: 29px;
left: -34px;
}
#rightCut {
}
#bottomCut {
left: -17px;
}