-
Notifications
You must be signed in to change notification settings - Fork 0
/
take-a-glance.css
107 lines (90 loc) · 1.62 KB
/
take-a-glance.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
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
html {
background: #1B1B1B;
}
.text {
font-size: 40px;
line-height: 1;
}
svg {
stroke: #555555;
stroke-width: 2px;
width: 200px;
height: 200px;
padding: 5px;
-webkit-filter: drop-shadow(0px 5px 5px #333333) brightness(100%);
filter: drop-shadow(0px 5px 5px #333333) brightness(100%);
}
svg:hover {
-webkit-filter: drop-shadow(2px 0px 2px #333333) brightness(120%);
filter: drop-shadow(2px 0px 2px #333333) brightness(120%);
}
svg * {
pointer-events: fill;
}
.button-link {
padding: 10px 15px;
background: #4479BA;
color: #FFF;
}
.wrong {
fill: #FC7677;
}
.blue {
fill: #55B8F8;
}
.yellow {
fill: #333333;
}
.peach {
fill: #F88355;
}
.purple {
fill: #912DEC;
}
.container {
display: none;
margin: 5px 5px 5px 5px;
}
.shape {
display: inline-block;
position: relative;
pointer-events: none;
}
.innershape-1 {
position: absolute;
}
.button {
border-radius: 4px;
background-color: #00B2E1;
font-size: 30px;
}
.circle > .circle {
transform: scale(0.7, 0.7);
top: 0;
left: .1em;
}
.circle > .square {
transform: scale(0.56, 0.56);
top: 0;
left: .1em;
}
.square > .circle {
transform: scale(0.7, 0.7);
top: 0;
left: .1em;
}
.square > .triangle {
transform: scale(0.56, 0.56);
top: 0;
left: .1em;
}
.circle > .triangle {
transform: scale(0.56, 0.56);
top: 0;
left: .1em;
}
.square > .square {
transform: scale(0.6, 0.6);
top: 0;
left: .1em;
}