-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit.css
64 lines (57 loc) · 1.1 KB
/
git.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
body {
background-color: white;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.container {
position: relative;
height: 200px;
}
.git {
height: 400px;
width: 400px;
border-radius: 60px;
background:
/* bottom circle */
radial-gradient(
closest-side,
white 98%,
transparent 100%
) 235px 215px / 60px 60px,
/* right circle */
radial-gradient(
closest-side,
white 98%,
transparent 100%
) 245px 100px / 60px 60px,
/* left circle */
radial-gradient(
closest-side,
white 98%,
transparent 100%
) 120px 100px / 60px 60px,
/* skewed line */
linear-gradient(
45deg,
transparent 45%,
white 44%,
white 56%,
transparent 55%
) 150px 100px / 120px 180px,
/* straight line */
linear-gradient(
to bottom,
transparent 40%,
white 40%,
white 60%,
transparent 60%
) 0 75px / 265px 110px,
#e24329;
background-repeat: no-repeat;
transform:
rotate(45deg);
box-shadow:
inset 0 0 0 30px white;
}