-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle1.css
More file actions
94 lines (91 loc) · 1.38 KB
/
style1.css
File metadata and controls
94 lines (91 loc) · 1.38 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
89
90
91
92
93
94
*{
padding: 0;
margin: 0;
}
.img1{
position: relative;
text-align: center;
color: white;
width: 1500px;
height: 250px;
background-image: url(backimg.jpg);
background-size: cover;
}
.centered{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.headline{
font-family: arial;
}
body{
background-color: white;
}
nav{
width: 100%
height: 100px;
background-color: white;
}
nav ul{
float: left;
display: block;
text-align: center;
}
ul{
margin-left: 0px;
}
nav ul li{
display: inline-block;
list-style: none;
position: relative;
float: left;
}
nav ul li a{
display: block;
font-family: arial;
color: #030111;
font-size: 14px;
padding: 14px 14px;
text-decoration: none;
background-color: #b39ddb;
}
nav ul li ul{
display: block;
position: relative;
background-color: #fff;
}
nav ul li ul li a {
padding: 10px 10px;
}
nav ul li a:hover{
color: black;
background-color: #03A9F4;
}
nav ul li ul{
display: none;
}
nav ul li:hover ul {
display: block;
position: absolute;
}
.Brief{
margin: 40px;
padding: 40px;
font-size: 17px;
}
p a{
text-decoration: none;
font-size: 17px;
color: black;
margin: 15px;
width: 15px;
}
p a:hover{
color: blue;
}
.list1{
font-size: 24px;
background-color: white;
}