-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (105 loc) · 2.38 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Inter';
}
body {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
/* color: #6c6798;
; */
background-image: url(https://wallpaperaccess.com/full/5745221.jpg);
margin-top: 20px;
margin-bottom: 20px;
gap: 3rem;
font-size: 1rem;
}
h1 {
font-style: italic;
margin-bottom: 15px;;
color: #ec5a65;
font-size: 2.5rem;
}
.time {
display: flex;
justify-content: center;
flex-direction: column;
justify-content: center;}
.breath-label {
font-size: 22px;
margin-right: 8px;
margin-left: 8px;
}
.breath-selection {
margin-right: 60px;
background-color: #cef382;
border-radius: 5px;
display: block;
min-width: 30px;
margin-top: 45px;
margin-left: 9.8rem;
font-size: 20px;
padding: 6px 10px;
font-weight: bold;
}
.start {
background-color: #f65a5e ;
border: none;
border-radius: 5px;
min-width: 75px;
font-size: 20px;
padding: 6px 10px;
font-weight: bold;
}
.start:hover {
background-color: #014670;
font-size: 24px;
}
.breath-instructions {
font-size: 22px;
}
.breaths-lapsed {
font-size: 20px;
margin-left: 38px;
margin-right: 38px;
}
.breaths-left {
font-weight: bold;
font-size: 1.4rem;
}
.circle-wrap {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
margin-bottom: 40px;
}
.outer-circle {
width: 200px;
height: 195px;
border-radius: 50%;
background-color: transparent;
border: 15px solid; color: rgba(206,243,130,255);
box-shadow: 0 10px 15px -3px rgba(206,243,130,255)
(0, 0, 0, 0.1), 0 4px 6px -2px rgba(206,243,130,255)
(0, 0, 0, 0.5);
}
.inner-circle {
width: 50px;
height: 50px;
position: absolute;
background-color: #cef382;
border-radius: 50%;
transition: 4s ease all;
box-shadow: 0 10px 15px -3px rgba(206,243,130,255)
(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.5);
justify-content: center;
}
.circle-grow {
transform: scale(5.3)
}