-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.css
71 lines (62 loc) · 910 Bytes
/
demo.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
70
71
body {
background-image: url("bgtest.jpg");
font-family: arial;
color: white;
font-weight: bold;
font-size: 18pt;
}
#testscroll {
width: 220px;
height: 220px;
overflow-y: auto;
color: yellow;
border: 1px black solid;
}
#testdiv {
width: 300px;
top: 320px;
position: fixed;
border: 3px black solid;
}
.noborder {
width: 75px;
left: 250px;
top: 75px;
position: fixed;
}
#roundborder {
width: 200px;
height: 200px;
top: 125px;
left: 350px;
position: fixed;
border: 2px red dashed;
border-radius: 30px 0px 30px 0px;
text-align: center;
}
.shadeMe {
font-size: 14pt;
font-weight: normal;
}
.overlay {
border: thin black dotted;
font-size: 14pt;
font-weight: normal;
color: cyan;
text-align: center;
width: 300px;
height: 300px;
position: fixed;
}
#overlay1 {
left: 700px;
top: 150px;
}
#overlay2 {
left: 850px;
top: 300px;
}
#overlay3 {
left: 770px;
top: 400px;
}