-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavaScript-statements-1.css
More file actions
74 lines (60 loc) · 1.35 KB
/
javaScript-statements-1.css
File metadata and controls
74 lines (60 loc) · 1.35 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
/* style start */
body {
font-family: sans-serif;
}
/* button start */
.button-wrapper {
margin: 41px 0px;
padding: 10px;
}
.button {
background: red;
color: white;
padding: 8px 16px;
border: none;
margin: 84px 0 !important;
transition: all 150ms;
border-radius: 4px;
font-weight: 700;
text-decoration: none;
cursor: pointer;
/* display: none; */
}
.button:hover {
background: rgb(13, 255, 126);
color: rgb(48, 48, 48);
scale: 1.08;
}
/* button end */
/* time-wrapper start */
.time-wrapper {
display: flex;
justify-content: center;
align-items: center;
gap: 16px;
background:
black;
color: white;
padding: 16px !important;
border-radius: 8px;
max-width: 450px;
height: 100px;
margin: 0 auto;
}
.time-text {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: auto;
min-height: 50px;
background: #ff1144;
backdrop-filter: blur(20px);
padding: 10px;
margin: 16px 0 !important;
font-size: 1.5rem;
font-weight: bold;
border-radius: 8px;
}
/* time-wrapper end */
/* style end */