-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
70 lines (63 loc) · 1.37 KB
/
about.css
File metadata and controls
70 lines (63 loc) · 1.37 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
body {
margin: 0;
box-sizing: border-box;
text-align: center;
}
h1 {
font-size: 10 rem;
color: #fff;
font-weight: 200;
}
h3 {
font-size: 80 rem;
color: #fff;
font-weight: 200;
}
h2 {
font-size: 2rem;
color: rgb(208, 235, 132);
text-transform: uppercase;
font-weight: 700;
margin-bottom: 1rem;
}
p {
font-size: 2rem;
color: #fff;
font-weight: 700;
margin-bottom: 1rem;
font-style:italic;
}
a {
padding: 15px 20px;
background: #52caee;
font-size: 1rem;
text-decoration: none;
color: #333333;
border-radius: .25rem;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.808)
}
.button
{
position: relative;
margin: auto;
text-align: center;
text-align: center;
width: 300px;
padding: 20px;
font-size: 25px;
color: #15f4ee;
font-family: poppins;
font-weight: 200;
border: 5px solid #15f4ee;
text-transform: uppercase;
letter-spacing: 15px;
cursor: pointer;
border-radius: 100px;
transition: 1.5s;
}
.button:hover
{
box-shadow: 0 5px 50px 0 #15f4ee inset, 0 5px 50px 0 #15f4ee,
0 5px 50px 0 #15f4ee inset, 0 5px 50px 0 #15f4ee;
text-shadow: 0 0 5px #15f4ee, 0 0 5px #15f4ee;
}