-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.css
More file actions
65 lines (49 loc) · 792 Bytes
/
demo.css
File metadata and controls
65 lines (49 loc) · 792 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
* {
box-sizing: border-box;
}
html {
height: 100%;
}
body {
position: relative;
height: 100%;
padding: 0;
margin: 0;
font-family: 'Myriad Pro', Arial, sans-serif;
}
#myDesktop1 {
float: left;
width: 50%;
height: 100%;
background: #0088ee url(bg.png) no-repeat center top;
}
#myDesktop2 {
float: left;
width: 50%;
height: 100%;
background: #d0ee4b url(bg.png) no-repeat center top;
}
#myWindow1 {
top: 100px;
left: 200px;
width: 400px;
height: 300px;
}
#myWindow2 {
top: 400px;
left: 300px;
width: 500px;
height: 300px;
}
#myWindow3 {
top: 30%;
left: 30%;
width: 200px;
height: 300px;
}
#myWindow4 {
top: 30px;
left: 30px;
width: 300px;
height: 300px;
}