forked from TheCodingDojo/webFun_css_plotting_your_blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (73 loc) · 1.58 KB
/
style.css
File metadata and controls
92 lines (73 loc) · 1.58 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
*{outline: 0px dotted white;
margins: 0px;
padding: 0px;}
div.gray-wrapper {
width: 2000px;
height: 800px;
background-color: gray;
padding-top: 50px;
padding-left: 50px;
padding-right: 50px;
}
div.green-box {
width: 1500px;
height: 200px;
background-color: green;
border: solid black;
vertical-align: top;
margin-left: 100px;
margin-right: 50px;
}
div.blue-box {
width: 200px;
height: 500px;
background-color: blue;
border: solid black;
display: inline-block;
margin-top: 50px;
margin-left: 50px;
margin-bottom: 200px;
}
div.red-box{
width: 1000px;
height: 400px;
background-color:red;
border: solid black;
display: inline-block;
margin-top: 50px;
margin-left: 100px;
}
div.yellow-left{
width: 200px;
height: 100px;
background-color:yellow;
border: solid black;
display: inline-block;
margin-top: 10px;
margin-left: 10px;
}
div.yellow-middle{
width: 200px;
height: 100px;
background-color:yellow;
border: solid black;
display: inline-block;
margin-top: 10px;
margin-left: 20px;
}
div.yellow-right{
width: 200px;
height: 100px;
background-color:yellow;
border: solid black;
display: inline-block;
margin-top: 10px;
margin-left: 20px;}
div.purple-box{
width: 500px;
height: 100px;
background-color: purple ;
border: solid black;
margin-top: 200px;
margin-right: 100PX;
}