-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (94 loc) · 2.15 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
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
body {
font-family: "montserrat";
background-color: #000;
}
.cir1 {
border-radius: 50px;
color: rgb(163, 239, 230);
height: 620px;
width: 400px;
border: 20px;
text-align: center;
box-shadow: #000;
box-shadow: 0 0 500px rgba(3, 255, 234, 0.959);
/* background-color:; */
padding: 2%;
margin-top: 10px;
/* background: linear-gradient(30deg, rgb(5, 5, 5), rgb(252, 255, 95)); */
}
.cir2 {
border-radius: 50px;
color: rgb(163, 239, 230);
height: 620px;
width: 400px;
border: 20px;
padding: 2%;
margin-top: 10px;
text-align: center;
box-shadow: #000;
box-shadow: 0 0 500px rgba(3, 255, 234, 0.959);
/* background-color:; */
}
.outer-card {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
background-color: #000;
padding: 3%;
/* background: linear-gradient(30deg, rgb(62, 151, 125), rgb(15, 15, 14)); */
}
.inner-card-1 {
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
padding: 20px;
/*
changed here */
padding-top: 0px;
top: 331.0663;
top: 250px;
}
.circle1 {
/* border-radius: 100%;
padding: 30%;
background-color: rgb(113, 237, 183);
margin-bottom: 20px;
align-items: center;
text-align: center;
padding-left:25px; */
border-radius: 50%;
background: #05e6ff;
box-shadow: inset 17px 17px 34px #ffffff,
inset -17px -17px 34px #fffefe;
padding-top:25%;
padding-bottom: 25%;
}
.stopwatch,
.timer {
font-family: "montserrat";
font-size: 3.5rem;
font-weight: bold;
color: #000;
}
.timer-seconds,
.timer-minutes {
font-size: 1.5rem;
line-height: 1.5;
font-family: "sacremanto";
margin:10px;
}
.target {
transform: scale(1);
}
.target:hover {
transform: scale(1.01); /* Only the value of scale() changed */
}
.target1 {
transform: scale(1);
}
.target1:hover {
transform: scale(1.02); /* Only the value of scale() changed */
}