-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
177 lines (145 loc) · 2.25 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/* Reset CSS (JANGAN DIHAPUS) */
html, body,
ul, ol, li,
h1, h2, h3, h4, h5, h6, p, div {
margin: 0;
padding: 0;
}
body {
font-family: "Lucida Grande";
}
li {
list-style: none;
}
a {
text-decoration: none;
}
/* Ketik code Anda dibawah */
header {
background-color: rgba(34,49,52,0.9);
height: 65px;
width: 100%;
position: fixed;
z-index: 10;
}
.header-left {
float: left;
}
.logo {
width: 124px;
margin: 20px;
}
.header-right {
float: right;
background-color: rgba(255,255,255,0.3);
}
.header-right:hover {
background-color: rgba(255, 255, 255, 0.5);
}
.header-right a {
color: white;
line-height: 65px;
padding: 0px 25px;
display: block;
}
.top-wrapper {
background-image: url(https://prog-8.com/images/html/advanced/top_en.png);
background-size: cover;
text-align: center;
padding: 180px 0px 100px 0px;
color: white;
}
.container {
width: 1170px;
margin: 0 auto;
}
.top-wrapper h1 {
font-size: 45px;
letter-spacing: 5px;
margin-bottom: 10px;
opacity: 0.7;
}
.top-wrapper p {
margin-bottom: 3px;
opacity: 0.7;
}
.btn-wrapper {
margin: 20px 0px;
}
.btn-wrapper p {
margin: 10px 0px;
}
.btn {
opacity: 0.8;
color: white;
padding: 12px 24px;
border-radius: 4px;
display: inline-block;
}
.btn:hover {
opacity: 1;
}
.signup {
background-color: #239b76;
}
.facebook {
background-color: #3b5998;
margin-right: 10px;
}
.twitter {
background-color: #55acee;
}
.lesson-wrapper {
height: 580px;
text-align: center;
background-color: #f7f7f7;
}
.heading {
padding: 60px 0px 30px 0px;
color: #5f5d60;
font-weight: normal;
}
.lesson {
float: left;
width: 25%;
}
.lesson-icon {
position: relative;
}
.lesson-icon p {
position: absolute;
top: 90px;
color: white;
width: 100%;
}
.txt-lesson {
color: #b3aeb5;
font-size: 15px;
width: 80%;
margin-top: 20px;
display: inline-block;
}
.message-wrapper {
text-align: center;
padding-bottom: 80px;
}
.message {
background-color: #5dca88;
opacity: 0.8;
padding: 15px 40px;
cursor: pointer;
box-shadow: 0 7px #1a7940;
}
.message:active {
position: relative;
top: 7px;
box-shadow: none;
}
footer {
padding-top: 30px;
border-top: 1px solid #eee;
font-size: 12px;
}
footer img {
width: 124px;
}