-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
80 lines (67 loc) · 1.11 KB
/
main.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
.container{
width: 7000px;
height: auto;
margin-right: auto;
margin-left: auto;
margin-top: 25px;
}
.navigation{
width: 100%;
height: 40px;
background-color: #0099cc;
}
.menu{
list-style-type: none;
margin-left: -40px;
}
.menu li{
float: left;
}
.menu li a{
text-decoration: none;
display: block;
width: 370px;
height: 40px;
text-align: center;
line-height: 40px;
color: white;
transition: 1s;
}
.menu li a:hover{
background-color: #0077b3;
color: black;
}
.scrollingtext{
font-size: xx-large;
width: 100%;
height: 60px;
background-color:#0088cc;
color: white;
}
.info{
width: 70000px;
height: auto;
}
.inner{
float: left;
width:370px;
height: 750px;
padding: 40px;
box-sizing: border-box;
background-color:#cceeff;
}
.inner p {
text-align: justify;
}
.footer{
margin-top: 5px;
clear: both;
background-color: #0099cc;
width: 100%;
height: auto;
overflow: auto;
padding: 20px;
box-sizing: border-box;
text-align: center;
color: white;
}