-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDEH_IT_2023_F_0070_Activity03_.css
85 lines (71 loc) · 1.31 KB
/
DEH_IT_2023_F_0070_Activity03_.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
body{
font-family: Arial, Helvetica, sans-serif;
background-color: gray;
margin: 0;
}
/*header section style*/
header{
padding: 10px;
background-color: rgb(0, 6, 56);
text-align: center;
}
header h1{
font-size: 3rem;
color: white;
}
/*navigation style*/
header nav ul li{
display: inline-flex;
}
header nav ul li a{
color:yellow;
text-decoration: none;
margin-right: 12px;
}
a:hover{
color: rgb(209, 6, 67);
}/*end header section style*/
/*End header section style*/
/*banner section-image content*/
.banner img{
width: 100%;
height: 100%;
border-radius: 12px;
}/*end banner section style*/
/*main content*/
.main-cont{
padding: 10px;
margin: 10px 80px 10px 80px;
text-align: center;
background-color: white;
display: inline-block;
}
.sub{
display: flex;
gap: 20px;
margin-left: 10px;
margin-right: 10px;
margin-top: 50px;
}
.main-cont .sub-cont{
background-color: rgb(0, 108, 116);
display: flexbox;
padding: 20px;
border-radius: 18Px;
color: white;
margin-left: 20px;
margin-right: 20px;
font-size: 0.768rem;
}
/*end*/
/*footer section*/
footer{
padding: 10px;
background-color: rgb(0, 6, 56);
color: white;
text-align: center;
}
footer .copyright{
font-size: 12px;
}
/*End footer section*/