-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (70 loc) · 1.94 KB
/
Copy pathstyle.css
File metadata and controls
79 lines (70 loc) · 1.94 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: radial-gradient(rgb(10, 137, 255), rgb(0, 0, 0));
}
.cont {
max-width: 438px;
border: 1px solid white;
border-radius: 10px;
}
.cont h1 {
color: rgb(255, 255, 255);
font-size: 40px;
padding: 10px 80px;
border-radius: 10px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
background: #0c5cd3;
border: 20px solid rgb(7 106 255);
transition: 0.5s;
}
.cont h1:hover {
box-shadow: 1px 0px 12px 12px rgba(22, 96, 255, 0.473);
transition: 0.5s;
}
.main {
background: #0c5cd3;
width: 100%;
min-height: 358px;
border-radius: 10px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 29px;
}
.innertimer {
color: white;
}
.bellof {
width: 80px;
}
.main button {
padding: 9px 22px;
border-radius: 5px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: 0.5s;
background: transparent;
color: white;
transition: 0.5s;
border: 1px solid white;
}
.main button:hover {
background: #d5e4ff;
color: #132c52;
transition: 0.5s;
}