-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
107 lines (97 loc) · 1.82 KB
/
index.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
* {
margin: 0;
padding: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
box-sizing: border-box;
}
.container{
width: 100%;
height: 600px;
/* min-height: 100vh; */
background-color: lightcoral;
background-image: url(/images/800px-Old_Katsina_College_-1-.jpg);
background-size: cover;
background-position: center;
padding: 10px 8%;
}
.nav{
width: 100%;
display: flex;
align-items:center;
justify-content: space-between;
padding: 10px 0;
}
.logo{
width: 180px;
}
nav ul{
list-style: none;
width: 100%;
text-align: right;
padding-right: 10px 0px;
}
nav ul li{
display: inline;
margin: 10px 20px;
color: #fefae0;
text-shadow: 0px 0px 5px black;
}
.btn{
align-items:inline;
padding: 10px 20px;
border: 0px;
border-radius: 5px;
background: #606c38;
color: #fefae0;
font-weight: 500;
}
.content{
margin-top: 14px;
color: #fefae0;
max-width: 620px;
}
.content h1{
font-size: 70px;
font-weight: 300px;
line-height: 85px;
margin-top: 25px;
}
.content p{
margin-bottom: 25px;
}
.container2{
width: 100%;
height: auto;
max-width: 1200px;
margin: 20px 20px;
padding: 20px;
background-color: #606c38;
border: 1px solid #ccc;
border-radius: 8px;
}
.container2 h2{
color: #fefae0;
margin-top: 10px;
/* margin-bottom: 10px; */
}
.img2{
width: 200px;
height: 200px;
display: block;
margin: 0 auto;
}
.btn-container{
display: flex;
justify-content: center;
}
#btn-tap{
align-items:inline;
padding: 20px 40px;
border: 0px;
border-radius: 5px;
background: #fefae0;
color: #606c38;
font-weight: 700;
margin-bottom: 100px;
margin-top: 30px;
}