-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
43 lines (36 loc) · 1.04 KB
/
style.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
@font-face
{
font-family: 'OpenSans';
src: url('OpenSans-Regular.ttf') format('truetype');
}
html, body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100%;
position: relative;
font-family: 'OpenSans';
-webkit-font-smoothing: antialiased;
background-color: #555;
}
.ring_ui
{
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.ring_ui *
{
position: absolute;
}
.ring_ui-circle
{
transition: 200ms all;
transform: rotate(-90deg);
transform-origin: 50% 50%;
}
.ring_ui-content
{
}