-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
88 lines (85 loc) · 1.53 KB
/
Copy pathmain.css
File metadata and controls
88 lines (85 loc) · 1.53 KB
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
body{
background-color: aquamarine;
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
max-width: 100vw;
overflow-x: hidden;
}
h1{
color: rgb(0, 0, 0);
}
header{
height: 100px;
width: 100%;
background-color: rgb(8, 70, 128);
border: 4px solid darkgray;
border-radius: 8px;
text-align: center;
font-family: 'Times New Roman', Times, serif;
font-size: larger;
padding: 30px;
color: blue;
}
nav{
position: sticky;
top: 0px;
background-color: gray;
overflow: hidden;
border: 4px solid darkgray;
border-radius: 8px;
display: flex;
flex-direction: row;
background-color: #333;
}
nav a{
display: block;
color: white;
text-decoration: none;
padding: 30px 20px;
float: left ;
/* position: sticky; */
display: flex;
flex-direction: row;
}
nav a:hover{
color: aquamarine;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.section{
height: min-content;
width: 100%;
background-color: gray;
font-family: 'Times New Roman', Times, serif;
color: black;
text-align: center;
overflow: hidden;
}
.img1{
height: 200px;
width: 200px;
align-items: center;
border-radius: 50%;
}
footer{
overflow: hidden;
background-color: #333;
}
footer a{
display: block ;
color: white;
text-decoration: none;
padding: 13px 20px;
float: left ;
}
.copyright{
float: right ;
}
section h5{
margin: 0px 130px;
}
.imgs{
height: 40%;
width: 25%;
}