-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (37 loc) · 903 Bytes
/
style.css
File metadata and controls
42 lines (37 loc) · 903 Bytes
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
body{
text-align: center;
background-color: rgb(233, 233, 233);
font-family: sans-serif;
}
nav {
display: flex;
gap: 2rem;
justify-content: center;
}
button {
padding: 1rem 2rem;
display: flex;
align-items: center;
gap: 10px;
text-transform: uppercase;
border: none;
border-radius: 0.5rem;
background-color: transparent;
box-shadow: 3px 3px 5px grey, 5px 5px 2px snow inset, -5px -5px 5px transparent inset;
transition: box-shadow 0.25s ease-in-out, font-size 0.5s ease-in, color 0.25s ease-in;
}
i {
font-size: 1.5rem;
}
button:hover {
box-shadow: 3px 3px lightgrey, 5px 5px snow inset;
text-shadow: 0 0 0.1rem limegreen;
color: green;
}
button:active {
outline: none;
box-shadow: 3px 3px transparent, 3px 3px 5px grey inset, -5px -5px 5px snow inset;
font-size: 1.2rem;
color: salmon;
font-weight: bold;
}