-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (116 loc) · 1.9 KB
/
style.css
File metadata and controls
116 lines (116 loc) · 1.9 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
body {
font-family: 'Roboto', sans-serif;
font-size: 2vw;
}
.textblock {
margin: 8% 8% 0;
}
.logo {
font-size: 250%;
margin-bottom: 8%;
}
.logo span {
color: red;
}
.title {
font-size: 400%;
margin-bottom: 6%;
}
.subtitle {
font-size: 235%;
margin-bottom: 8%;
}
.text {
display: flex;
justify-content: space-between;
margin-bottom: 6%;
}
.text ul {
padding-inline-start: 1em;
}
.left {
width: 54%;
}
.right {
width: 43%;
}
.subtext {
margin-bottom: 15%;
}
.figures {
height: 35vw;
overflow: hidden;
float: left;
}
.hexagon,
.triangle,
.pentagon {
background-color: #E41F13;
}
.parallelogram_left,
.circle,
.parallelogram_right {
background-color: #FED002;
}
.parallelogram_left,
.parallelogram_middle,
.parallelogram_right {
clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.figures > * {
position: relative;
float: left;
}
.parallelogram_left {
height: calc(18vw * 1.08);
width: 18vw;
transform: rotate(33deg);
left: -8vw;
top: 7vw;
}
.hexagon {
clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
height: calc(12vw * 0.87);
width: 12vw;
transform: rotate(10deg);
left: -10vw;
top: 18vw;
}
.parallelogram_middle {
background: #000000;
height: calc(15vw * 1.1);
width: 15vw;
left: -10vw;
top: 15vw;
}
.triangle {
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
height: calc(13vw * 0.86);
width: 13vw;
transform: rotate(91deg);
left: -21vw;
top: 3vw;
}
.circle {
clip-path: circle(50% at 50% 50%);
height: 30vw;
width: 30vw;
left: -23vw;
}
.pentagon {
clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
height: calc(19vw * 0.97);
width: 19vw;
transform-origin: 50% 55%;
transform: rotate(42deg);
left: 64vw;
top: -21vw;
}
.parallelogram_right {
height: calc(20vw * 0.42);
width: 20vw;
transform: rotate(33deg);
left: 64vw;
top: -11vw;
}
/*# sourceMappingURL=style.css.map */