-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
34 lines (32 loc) · 693 Bytes
/
style.css
File metadata and controls
34 lines (32 loc) · 693 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
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #031321;
}
a {
font-family: sans-serif;
position: relative;
display: inline-block;
padding: 15px 30px;
color: #2192f3;
border: 5px solid #2196f3;
border-radius: 50px;
text-transform: none;
letter-spacing: 4px;
text-decoration: none;
font-size: 24px;
overflow: hidden;
transition: 0.2s;
}
a:hover {
color: #255784;
background: #2196f3;
border: 5px;
box-shadow: 0 0 70px #2196f3, 0 0 70px #2196f3, 0 0 70px #2196f3;
transition-delay: 0.1s;
filter: brightness(200%);
}