-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (54 loc) · 1 KB
/
style.css
File metadata and controls
55 lines (54 loc) · 1 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
.app {
height: 100vh;
width: 100%;
padding: 20px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 2rem;
}
.main {
height: auto;
min-height: 200px;
width: 90vw;
border: 1px solid black;
box-shadow: 0px 0px 5px gray;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
padding: 1rem;
border-radius: 10px;
box-shadow: 5px 5px 0px gray;
transition: box-shadow 0.5s ease;
}
.main:hover {
box-shadow: -5px -5px 0px gray;
}
.heading {
letter-spacing: 3px;
word-spacing: 10px;
}
.btn {
height: 50px;
width: 100px;
font-size: 18px;
text-transform: uppercase;
letter-spacing: 2px;
background-color: transparent;
border: 1px solid black;
border-radius: 10px;
box-shadow: 5px 5px 0px gray;
transition: box-shadow 0.5s ease;
}
.btn:hover {
box-shadow: -5px -5px 0px gray;
}