-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (44 loc) · 1005 Bytes
/
style.css
File metadata and controls
48 lines (44 loc) · 1005 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Jacquard+12&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Freeman&display=swap');
body{
background-image: url(pic.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
h1{
color: blue;background-color: yellowgreen;text-align: center;
font-family: "Jacquard 12", system-ui;
}
p{
color: aliceblue;
font-family: "Freeman", sans-serif;
}*/
#sampleID{
background-color: aqua;
color: black;
text-align: center;
margin: 100px;
padding: 100px 200px 50px 20px;
border: 20px solid red;
}
.my_class{
background-color: aquamarine;
color: black;
}
.box1{
width: 100px;
height: 100px;
background-color: brown;
position: relative;
top:85%;
position: sticky;
z-index: 1;
}
.box2{
width: 1000px;
height: 100px;
background-color:blue;
position: relative;
}