-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpositioning.css
More file actions
62 lines (53 loc) · 1.04 KB
/
positioning.css
File metadata and controls
62 lines (53 loc) · 1.04 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
body {
height: 10000;
background-color: lightcoral;
}
header {
background-color: rgb(0, 51, 255);
color: white;
height: 70px;
position: sticky;
top: 0;
}
header ul li {
display: inline;
padding: 20px;
font-size: 30px;
border: 2px solid black;
}
header ul li a {
color: white;
text-decoration: none;
}
header ul {
padding: 20px;
border: 2px solid red;
}
.container {
background-color: rgba(0, 255, 0, 0.511);
width: 60%;
height: 70vh;
margin: auto;
z-index: 100;
}
.dabba1 {
background-color: rgb(188, 245, 197);
width: 150px;
height: 70px;
font-size: 26px;
border-color: green;
border-style: solid none solid none;
border-radius: 30px;
text-align: center;
position: fixed;
padding-top: 10px;
right: 12px;
bottom: 14px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.secondUl {
background-color: wheat;
}
.secondUl li {
list-style: georgian;
}