-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
133 lines (108 loc) · 1.86 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/* Cascading Style Sheet */
body{
background-color:#6BEDD3;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
margin:0;
padding: 0;
}
ul{
margin: 0;
padding: 0;
}
li{
list-style: none;
}
header{
background-color:#38A18C;
height: 100px;
}
h1{
float: left;
margin-left: 20px;
margin-top:30px;
margin-right:50px;
color: #fffefe;
text-shadow: 3px 3px 3px rgb(0, 0, 0);
font-size:xx-large
}
nav li {
display: inline-block;
margin-top: 40px;
margin-right: 20px;
}
.btn{
width: 150px;
height: 50px;
color:rgb(254, 247, 247);
background-color: rgb(52, 137, 240);
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
cursor: pointer;
border-radius: 10px;
}
nav li a{
text-decoration: none;
color:#141312 ;
font-weight: 600;
font-size: 20px;
cursor: pointer;
}
nav li a:hover{
color: rgb(57, 75, 207);
text-decoration:underline;
font-size: 22px;
}
main{
width: 960px;
margin: 30px auto;
min-height: 700px;
}
#hero{
width:960px;
border: 3px solid rgb(255, 253, 253);
border-radius: 25px;
}
.sealpup{
width:150px;
height: 150px;
border-style:groove;
border-radius:50px ;
}
#hero:hover{
border:3px solid rgb(2, 2, 2);
border-radius:0px;
}
#hero2{
width:960px;
border: 3px solid rgb(255, 253, 253);
border-radius: 25px;
}
#hero2:hover{
border:3px solid rgb(2, 2, 2);
border-radius:0px;
}
.subImage{
}
main li img{
width: 300px;
height: 150px;
}
main li{
float: left;
margin-right: 30px;
margin-top: 20px;
margin-bottom: 25px;
}
main li:last-child{
margin-right: 0px;
}
main p{
font-size:medium;
}
footer{
text-align: center;
background-color:#38A18C;
height: 50px;
}
footer p{
padding-top:20px;
}