-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (55 loc) · 1.2 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
/*
______________________________________________
| |
| DEFAULT BODY AND OTHER CSS TAG |
|______________________________________________|
*/
* {
margin: 0;
padding: 0;
}
body {
background: #efefef;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
h4{
text-align: center;
}
/*
______________________________________________
| |
| UTILITIES CLASS |
|______________________________________________|
*/
.clocks-container {
display: flex;
flex-direction: column;
text-align: center;
}
.css-button-neumorphic {
min-width: 130px;
height: 40px;
color: #fff;
padding: 5px 10px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: inline-block;
outline: none;
border-radius: 5px;
border: none;
background: #efefef;
box-shadow: 2px 2px 4px #c8d0e7, -1px -1px 3px #fff;
color: #585858;
margin: 2rem 0rem;
text-align: center;
text-decoration: none;
padding: 1rem 0rem;
}
.css-button-neumorphic:active {
box-shadow: inset 1px 1px 3px #c8d0e7, inset -1px -1px 3px #fff;
}