-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTimer.css
152 lines (122 loc) · 2.95 KB
/
Timer.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
@import url('https://fonts.googleapis.com/css?family=popins:200,300,400,500,600,700,800,900&display=swap');
#input-time {
margin-top: 24px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: #dc7cb603;
}
.VP {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.div1 {
background-color: white;
border: none;
padding: 7px;
border-radius: 6px;
}
.div2 button{
margin-top: 15px;
border: none;
cursor: pointer;
padding: 7px;
border-radius: 6px;
}
input {
padding: 2px;
border: none;
border-radius: 6px;
}
.div1 label, .div2 button span, .div2 a {
font-weight: 500;
color: #555;
}
/* Second css////////////////// */
.skill {
width: 160px;
height: 160px;
position: relative;
}
.outer {
display: flex;
align-items: center;
justify-content: center;
height: 160px;
width: 160px;
border-radius: 50%;
box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.15),
-6px -6px 10px -1px rgba(255,255,255,0.7)
}
.inner{
height: 120px;
width: 120px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: inset 4px 4px 6px -1px rgba(0,0,0,0.2),
inset -4px -4px 6px -1px rgba(255,255,255,0.7),
-0.5px -0.5px 0px rgba(255,255,255,1),
0.5px 0.5px 0px rgba(0,0,0,0.15),
0px 12px 10px -10px rgba(0,0,0,0.05);
}
#number {
font-weight: 600;
color: #555;
}
#eliCircle {
fill: none;
stroke: #ff6347;
stroke-width: 20px;
stroke-dasharray: 440;
stroke-dashoffset: 440;
}
.skill svg {
transform: rotate(-90deg);
position: absolute;
top: 0;
left: 0;
}
#start-timer {
transition:opacity 0.5s linear;
user-select: none;
}
.div1 {
transition:opacity 0.5s linear;
margin-left: 25px;
}
#stop-timer {
cursor: pointer;
background: hsla(211, 66%, 87%, 1);
background: linear-gradient(90deg, hsla(211, 66%, 87%, 1) 0%, hsla(348, 67%, 88%, 1) 50%, hsla(272, 26%, 72%, 1) 100%);
background: -moz-linear-gradient(90deg, hsla(211, 66%, 87%, 1) 0%, hsla(348, 67%, 88%, 1) 50%, hsla(272, 26%, 72%, 1) 100%);
background: -webkit-linear-gradient(90deg, hsla(211, 66%, 87%, 1) 0%, hsla(348, 67%, 88%, 1) 50%, hsla(272, 26%, 72%, 1) 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#C9DEF4", endColorstr="#F5CCD4", GradientType=1 );
border-radius: 50%;
width: 131px;
height: 131px;
position: absolute;
top: 14px;
left: 14.2px;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s linear;
user-select: none;
}
#stop-timer:hover {
opacity: 1;
}
.div1 label {
user-select: none;
}
#menu {
margin-left: 7px;
opacity: 0.6;
}
/* Css Timer */