-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
51 lines (51 loc) · 948 Bytes
/
stylesheet.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
body{
background-color: black;
color:white;
font-size: large;
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin-top:200px;
}
.red{padding:5%;
background-color:red;
float:left;
height:50px;
width:150px;
position: relative;
text-align: center;
}
.pink{
background-color:pink;
float:left;
padding:5%;
height:50px;
width:200px;
position: relative;
text-align:center;
}
.blue{
background-color:blue;
float:left;
padding:5%;
height:50px;
width:200px;
position: relative;
text-align:center;
}
.orange{
background-color:orange;
float:left;
height:50px;
width:200px;
padding:5%;
text-align: center;
position:relative;
}
.center{
border-radius:100%;
text-align:center;
width:20%;
height:200px;
position:relative;
float:left;
margin-left:500px;
}