-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
69 lines (69 loc) · 1.29 KB
/
home.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
body{
background-image: url(images/img3.jpg);
background-size:cover;
}
nav{
display: flex;
justify-content: space-between;
color: #FFFFFF;
font-size: 23px;
}
#big{
font-size: 25px;
}
.row ul li{
list-style: none;
padding-left: 30px;
display: inline;
margin: 0;
}
nav .row ul li a{
text-decoration: none;
text-transform: uppercase;
font-size: 20px;
color: #FFFFFF;
}
.row p{
border-bottom: 3px solid gray;
padding-bottom: 10px;
}
.content{
margin-left: 100px;
width: 600px;
text-align: center;
color: #FFFFFF;
font-size: 64px;
}
.content2{
margin-left: 100px;
width: 600px;
/* text-align: center; */
color: #FFFFFF;
font-size: 30px;
padding-left: 100px;
}
.learnmore{
margin-left: 100px;
padding-left: 200px;
}
.learnmore input[type=submit]{
width: 200px;
height: 50px;
color: #FFFFFF;
border-radius: 25px;
background-color: rgba(128, 128, 128,0.5);
border: none;
font-size: 22px;
font-weight: bold;
}
footer{
display: flex;
justify-content: space-around;
text-align: center;
color: black;
background-color: rgba(128, 128, 128,0.7);
margin: 100px -8px 0px -8px;
padding: 20px;
font-size: 20px;
font-weight: bold;
}