-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (95 loc) · 1.51 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
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
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family:'Noto Sans', sans-serif;
}
section::after {
content: "";
display: table;
clear: both;
}
header {
margin: 40px 0;
}
.h1 {
text-align:center;
color:#04AA6D;
font-size:32px;
}
.h5 {
text-align:center;
font-size:18px;
}
.section1 {
padding:80px 0px;
width:100%;
background-color:#282A35;
color:white;
margin: 16px 0;
}
.section2 {
padding:80px 0px;
width:100%;
background-color:#D9EEE1;
color:black;
margin: 16px 0;
}
div {
float:left;
width:50%;
text-align:center;
}
h1{
font-size:100px;
}
h5{
font-size:20px;
margin-bottom:30px;
}
.learn1 {
border:none;
padding:8px 16px;
overflow:hidden;
text-decoration:none;
text-align:center;
cursor:pointer;
white-space:nowrap;
background-color:#04AA6D;
color:white;
font-size:18px;
margin:auto;
display:block;
width:200px;
border-radius:25px;
font-weight:700;
margin-bottom: 20px;
}
.learn2 {
border:none;
padding:8px 16px;
overflow:hidden;
text-decoration:none;
text-align:center;
cursor:pointer;
white-space:nowrap;
background-color: black;
color:white;
font-size:18px;
margin:auto;
display:block;
width:200px;
border-radius:25px;
font-weight:700;
}
.margin {
margin-bottom:20px;
}
footer {
text-align: center;
background-color:#282A35;
color:white;
padding: 40px 0;
}