-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadobe.css
49 lines (45 loc) · 849 Bytes
/
adobe.css
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
body {
background-color: white;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.container {
position: relative;
height: 400px;
}
.adobe {
/* colors */
/* red #ff0000 */
height: 400px;
width: 600px;
background:
linear-gradient(
245deg,
red 0%, red 23.5%,
white 15%, white 40%,
transparent 40%
) -100px 0,
linear-gradient(
-245deg,
red 0%, red 23.5%,
white 20%, white 40%,
transparent 40%
),
linear-gradient(
245deg,
transparent 0%, transparent 23.5%,
red 20%, red 40%,
transparent 40%
) -170px 0,
linear-gradient(
to bottom,
white, white
) 0 330px / 400px 70px,
linear-gradient(
to bottom,
red, red
) 0 0 / 400px 400px;
background-repeat: no-repeat;
}