-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (59 loc) · 1.09 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
body {
background: #342e37;
}
.container {
padding-top: 30px;
}
h1 {
color: #fff;
font-family: "Space Mono", monospace;
font-size: 3rem;
text-align: center;
font-weight: 300;
}
img {
max-width: 80%;
margin-bottom: 2rem;
display: block;
margin-inline: auto;
border-radius: 50%;
-webkit-box-shadow: 2px 0px 14px 7px rgba(255, 255, 255, 0.75);
-moz-box-shadow: 2px 0px 14px 7px rgba(255, 255, 255, 0.75);
box-shadow: 2px 0px 14px 7px rgba(255, 255, 255, 0.75);
@media screen and (min-width: 768px) {
max-width: 40%;
}
}
form {
padding: 30px;
}
.btn {
outline: none;
border: none;
cursor: pointer;
display: block;
position: relative;
background-color: #676264;
padding: 20px 80px;
margin: 0 auto;
border-radius: 20px;
box-shadow: 0 6px #2e282a;
margin-bottom: 3rem;
}
.btn a {
color: white;
font-family: "Open Sans", sans-serif;
font-size: 1rem;
font-weight: 300;
text-transform: uppercase;
text-decoration: none;
letter-spacing: 2px;
}
.btn:hover {
box-shadow: 0 4px #2e282a;
top: 2px;
}
.btn:active {
box-shadow: none;
top: 6px;
}