-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathstyle.css
54 lines (48 loc) · 1.05 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
body {
background: #eeefed;
}
a {
text-decoration: none;
}
.logo {
display: block;
margin-left: auto;
margin-right: auto;
width: 40%;
padding-top: 25px;
}
h1 {
position: relative;
text-align: center;
color: #353535;
font-size: 50px;
font-family: "Calibri", sans-serif;
}
p {
font-family: 'Lato', sans-serif;
font-weight: 300;
text-align: center;
font-size: 18px;
color: #676767;
margin-bottom: 40px;
}
.custom-btn {
width: 130px;
height: 40px;
color: #000;
border-radius: 5px;
padding: 10px 25px;
font-family: 'Lato', sans-serif;
font-weight: 500;
background: transparent;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: block;
margin: 0 auto 20px; /* Center and add margin to stack vertically */
box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
7px 7px 20px 0px rgba(0, 0, 0, .1),
4px 4px 5px 0px rgba(0, 0, 0, .1);
outline: none;
}
/* Add your custom styles for btn-1, btn-2, and btn-3 */