-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplot.css
More file actions
59 lines (55 loc) · 1.07 KB
/
Copy pathplot.css
File metadata and controls
59 lines (55 loc) · 1.07 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
*{
margin: 0px;
padding: 0px;
}
#gray{
background-color:gray;
margin: auto;
width: 650px;
height:500px
}
#green{
background-color:green;
position: relative;
top: 15px;
margin: 15px 15px 30px 15px;
height: 120px
}
#blue{
background-color:blue;
width: 150px;
height: 250px;
margin: 0px 0px 15px 15px;
}
#red{
background-color:red;
width: 448px;
height: 340px;
margin:0px 0px 15px 15px;
}
#blue,#red{
display:inline-block;
vertical-align: top;
}
.yellow{
background-color:yellow;
width:120px;
height: 120px;
margin: 20px 0px 5px 10px;
}
.yellow{
display: inline-block;
}
#purple{
background-color:purple;
width: 392px;
height: 100px;
margin: 15px;
}
<p>Git is a version contro sytem; you can think of
it as a series of snapshots(commits) of your
code base.with the creation of each snapshot you built out a whole
a whole application,seeing the growth of a full app.
During this time you can make branches to experiment and come back
and come back to previous snapshots you took or merge those experiments into the
the your app.</p>