-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle(index5).css
More file actions
75 lines (71 loc) · 1.45 KB
/
Copy pathstyle(index5).css
File metadata and controls
75 lines (71 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
h1{
border-style:solid;
border-width: 3px;
border-color: hsl(273, 100%, 54%);
border-radius: 20px;
}
/*this whole function can be condensed into the following (refer to h2)*/
h2{
border: 20px solid rgb(71, 126, 171);
border-radius: 25px;
}
#p1{
border-bottom: 3px solid rgb(69, 152, 127);
border-top: 3px solid yellow;
border-left: 3px dotted salmon;
border-right: 3px dotted orangered
}
#logang{
text-shadow: 3px 3px 5px hsl(156, 49%, 46%), -3px -3px 5px hsl(62, 68%, 57%);
}
#box1{
width: 100px;
height: 100px;
background-color: rgb(234, 234, 234);
box-shadow: 3px 3px 5px;
}
body{
margin: 2px;
border: 3px solid;
display: flow-root;
}
.box{
border:5px solid;
font-size:5em;
width: 250px;
height:250px;
}
#box1{
background-color: red;
margin:auto;
}
#box2{
background-color: aqua;
margin-left: auto;
}
#img1{
float: right;
margin-right: 10px;
}
#img2{
float: left;
margin: 10px;
}
#overflowdiv1{
border: 2px solid;
height: 75px;
overflow: auto;
}
#display1{
background-color: pink;
width:100px;
height:100px;
display:inline-block;
/*This function makes the object invisible; it takes up the space but is identical in colour to background visibility: hidden;*/
}
#display2{
background-color: cyan;
width:100px;
height:100px;
display:block;
}