-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
82 lines (72 loc) · 1.25 KB
/
footer.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
.main {
width: 100vw;
background-color: #2D3436;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.page1 {
height: 100vh;
width: 100vw;
align-items: center;
}
.page2 {
height: 100vh;
width: 100vw;
}
.page1>h1 {
color: yellow;
font-size: 5rem;
text-align: center;
padding: 2rem;
align-items: center;
margin-bottom: 2rem;
}
hr {
width: 50%;
color: #fff;
margin-left: 29rem;
border: 3px solid;
}
.box {
height: 45rem;
width: 80%;
color: #fff;
align-items: center;
text-align: center;
margin-left: 13rem;
/* background-color: red; */
}
.box>h3 {
font-size: 3rem;
}
.box>ul>li {
list-style-type: decimal;
font-size: 2rem;
line-height: 2;
font-weight: 800;
}
button {
background-color: #4CAF50;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 2rem;
font-weight: 800;
border: 2px solid white;
border-radius: 50px;
cursor: pointer;
margin-left: 52rem;
margin-top: -8rem;
top: -80%;
}
button:hover {
background-color: #fff;
color: blue;
}