-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotesCSSbox.css
More file actions
94 lines (81 loc) · 1.45 KB
/
Copy pathnotesCSSbox.css
File metadata and controls
94 lines (81 loc) · 1.45 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
.borders {
width: 80%;
border: 5px solid green;
border-left:10px inset pink;
margin-left: 80px;
}
h1
{
border: 4px hidden black;
border-bottom: solid;
padding: 30px;
padding-left: 100px;
}
.padding {
padding: 0 50px;
border: 15px solid black;
border-top: hidden;
border-bottom: hidden;
}
.margin {
padding: 20px 120px;
border: 5px solid darkblue;
margin: 25px 50px;
}
.display
{
border: 5px inset purple;
}
h3 {
padding-left: 15px;
text-decoration: underline;
}
.units {
border: 5px solid yellow;
margin-top: 15px;
}
#static
{
color: rgb(200,0,250);
}
#relative {
position: relative;
bottom: 15px;
left: 30px;
width: 200px;
border:solid;
background-color: rgba(200,0,200,.3);
}
#absolute {
margin: 40px;
border:solid;
padding: 15px;
position: absolute;
opacity: 0.6;
background-color: lightblue;
}
#position {
border: solid;
border-bottom: hidden;
padding: 50px;
margin: 10px;
margin-bottom: 180px;
position: relative;
left: 10px;
bottom: 20px;
border-radius: 15%;
}
#fixed {
position: fixed;
top: 0px;
left:70px;
height: 40px;
border: solid;
background-color: rgba(0,153,255,0.4)
}
#sticky {
border: solid;
background-color: rgba(255, 255, 102, 0.7);
position: sticky;
top: 40px;
}