-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircles.css
More file actions
116 lines (101 loc) · 1.93 KB
/
Copy pathcircles.css
File metadata and controls
116 lines (101 loc) · 1.93 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
.circle-general {
position: absolute;
width: 20rem;
height: 20rem;
border-radius: 100%;
background-color: inherit;
}
.circle--coloured-small-left {
width: 10rem;
height: 10rem;
border-radius: 100%;
top: 55%;
left: 95%;
transform: translate(-50%, -50%);
z-index: 100;
transition: all 0.5s ease;
}
.circle--coloured-small-right {
width: 10rem;
height: 10rem;
border-radius: 100%;
top: 55%;
left: 5%;
transform: translate(-50%, -50%);
z-index: 100;
transition: all 0.5s ease;
}
.circle--coloured-small-left:has(.link-btn:hover),
.circle--coloured-small-right:has(.link-btn:hover) {
box-shadow: 0 0.5rem 4rem rgba(119, 119, 119, 0.4);
}
.circle--coloured-small-left:has(.link-btn:active),
.circle--coloured-small-right:has(.link-btn:active) {
width: 9rem;
height: 9rem;
box-shadow: 0 1.5rem 4rem rgba(119, 119, 119, 0.2);
}
.goals-section .circle--left-top {
left: 7%;
}
.circle--left-bottom {
top: 100%;
left: 50%;
transform: translate(-50%, -50%);
}
.circle--rigth-bottom {
top: 100%;
left: 50%;
transform: translate(-50%, -50%);
}
.circle--left-top {
top: 0;
left: 15%;
transform: translate(50%, -50%);
}
.circle--right-top {
top: 0;
right: 5%;
transform: translate(-50%, -50%);
}
.circle--centre-left {
top: 55%;
left: 100%;
transform: translate(-50%, -50%);
}
.circle--centre-right {
top: 55%;
right: 50%;
transform: translate(-100%, -50%);
}
.circle--centre-bottom {
top: 100%;
left: 50%;
transform: translate(-50%, -50%);
}
.circle--centre-top {
top: 0%;
left: 50%;
transform: translate(-50%, -50%);
}
.circle--footer-left {
width: 10rem;
height: 10rem;
top: 50%;
left: 0;
transform: translate(-50%, -50%);
}
.circle--footer-right {
width: 10rem;
height: 10rem;
top: 50%;
left: 100%;
transform: translate(-50%, -50%);
}
.circle--footer-top {
width: 10rem;
height: 10rem;
top: 0;
left: 50%;
transform: translate(-50%, -50%);
}