-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (69 loc) · 1.04 KB
/
style.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
/*@import url("https://cdn.web-fonts.ge/fonts/alk-rex-bold/css/alk-rex-bold.min.css");*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
a{
text-decoration: none;
/*font-family: "ALK Rex Bold", sans-serif;*/
/*font-family: 'Rex Bold';*/
font-family: 'ALK Life';
/*font-weight: 800;*/
}
.navbar-a{
font-family: 'Rex Bold';
}
ul {
list-style: none;
}
p{
margin-top: 10px;
font-family: 'Grechen Fuemen', cursive;
}
h5{
font-family: 'ALK Life';
}
header {
background-color: green;
position: fixed;
width: 100%;
top: 0;
/* bottom: ;
right: ;
left: ;*/
z-index: 1;
}
.navbar-ul li {
display: inline-block;
margin: 10px;
}
.box {
width: 100px;
height: 100px;
background-color: blue;
position: fixed;
left: 50px;
/* right: 50px;*/
bottom: 50px;
border-radius: 20px;
}
.sticky {
font-size: 40px;
background-color:black ;
color: white;
position: sticky;
top: 41px;
left: 50px;
}
.relative {
position: relative;
}
.absolute {
position: absolute;
top: 50px;
left: 80px;
width: 100px;
color: #fff;
background-color: black;
}