-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (90 loc) · 1.65 KB
/
style.css
File metadata and controls
96 lines (90 loc) · 1.65 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
html {
font-family: 'Times New Roman', Times, serif;
font-size: 40px;/* 10px=1cap*/
letter-spacing: 0.2px;
min-height: 100vh;
color:rgba(102, 5, 8, 0.882);
background-image: linear-gradient(-45deg, #010a32f6 0%, #09dc13 130%);
background-size: cover;
}
h1{
margin:5px auto 5px auto;
color: #660508e1;
}
p{
margin:0px auto 0px auto;
}
.mssg{
height: 3cap;
margin: 5px auto 0px auto;
}
.app{
width: 800px;
height: 800px;
margin: 80px auto;
text-align: center;
border-radius: 50%;
padding: 20px;
}
.app-circle {
position: relative;
margin: 0px auto;
width: 200px;
height: 300px;
}
.shape {
pointer-events: none;
}
.sc {
position: absolute;
width: 100px;
height: 200px;
box-sizing: border-box;
border: solid 5px;
}
.l-side {
top: 0;
left: 0;
transform-origin: right center;
transform: rotate(0deg);
border-top-left-radius: 100px;
border-bottom-left-radius: 100px;
border-right: none;
z-index: 1;
}
.r-side {
top: 0;
left: 100px;
transform-origin: left center;
transform: rotate(0deg);
border-top-right-radius: 100px;
border-bottom-right-radius: 100px;
border-left: none;
}
.circle {
border-color: #bf5239;
}
.circle-mask {
border-color: #e85a71;
}
.counter{
font-family: 'Times New Roman', Times, serif;
font-size: 150%;
position: relative;
top: 50px;
color: #d8e9ef;
}
button {
position: relative;
top: 50px;
font-size: 80%;
text-transform: uppercase;
letter-spacing: 1px;
border: none;
background: none;
outline: none;
color: #d8e9ef;
}
button:hover {
color: #90c0d1;
}