-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathindex.html
60 lines (51 loc) · 1.42 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Css Variables</title>
<style>
:root{
--color: rgb(255, 0, 247);
--seccolor: rgb(231, 164, 246);
--defpad: 23px;
--defop: 0.4;
}
*{
margin: 0;
padding: 0;
}
.nav{
background-color: var(--color);
}
ul{
display: flex;
}
ul li{
opacity: var(--defop);
list-style: none;
padding: var(--defpad);
border: 2px solid var(--seccolor);
}
ul li:first-child{
--color: rgb(243, 87, 8);
background-color: var(--color, blue);
}
.container{
background-color: var(--seccolor);
}
</style>
</head>
<body>
<div class="nav">
<ul>
<li>Home</li>
<li>About </li>
<li>Contact</li>
</ul>
</div>
<div class="container">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Esse assumenda qui ad dolorem consequuntur facilis aliquam. Unde sapiente ipsam quaerat, at debitis nesciunt, totam nulla quae ad ipsum veniam sed eligendi rem deserunt quos maiores modi. Illo eaque expedita natus iusto nostrum dolorem quos est.
</div>
</body>
</html>