-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
43 lines (43 loc) · 834 Bytes
/
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.section{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
}
.heading{
font-size: 2.5rem;
margin-bottom: .5rem;
}
.container{
display: grid;
width: 500px;
height: 500px;
z-index: 1000;
border: none;
box-shadow:
5px 5px 10px 0 rgba(0, 0, 0, 0.25),
-5px -5px 10px 0 rgba(0, 0, 0, 0.25),
inset -5px -5px 20px 0 rgba(255, 255, 255, 1);
}
.buttons{
margin: 1rem;
}
.btn{
padding: .5rem 1rem;
margin: 2rem;
background: transparent;
cursor: pointer;
font-size: 1rem;
outline: none;
border: none;
box-shadow:
5px 5px 10px 0 rgba(0, 0, 0, 0.25),
inset -5px -5px 20px 0 rgba(255, 255, 255, 1);
border-radius: 5px;
}