-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
79 lines (74 loc) · 1.05 KB
/
stylesheet.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
68
69
70
71
72
73
74
75
76
77
78
79
/* Reset CSS (DO NOT DELETE) */
html,
body,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
div {
margin: 0;
padding: 0;
}
body {
font-family: "Lucida Grande";
margin: 0;
}
li {
list-style: none;
}
a {
text-decoration: none;
}
/* Write your code below */
.top-wrapper {
padding: 190px 0 250px 0;
background-image: url(https://prog-8.com/images/html/advanced/top_en.png);
background-size: cover;
color: white;
text-align: center;
}
.top-wrapper h1 {
opacity: 0.7;
font-size: 45px;
letter-spacing: 5px;
margin-bottom: 10px;
}
.top-wrapper p {
opacity: 0.7;
margin-bottom: 3px;
}
.btn-wrapper {
margin: 20px 0;
}
.btn-wrapper p {
margin: 10px 0;
}
.signup {
background-color: #239b76;
}
.facebook {
background-color: #3b5998;
margin-right: 10px;
}
.twitter {
background-color: #55acee;
}
.btn {
padding: 12px 24px;
color: white;
/*display:inline-block;*/
opacity: 0.8;
border-radius: 4px;
}
.btn:hover {
opacity: 1;
}
.fa {
margin-right: 5px;
}