forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (42 loc) · 805 Bytes
/
Copy pathstyle.css
File metadata and controls
50 lines (42 loc) · 805 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
/**
* Add your custom styles below
*
* Remember:
* - Be organised, use comments and separate your styles into meaningful chunks
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
*/
body{
background-color: tomato;
}
.encabezado {
background-color: rgb(148, 144, 144);
text-align: center;
height: 120px;
border:2px solid red;
color: white;
}
.parrafos{
background-color:rgba(245, 238, 238, 0.25);
color: black;
border:2px dotted grey;
text-align: center;
margin: 0 3cm;
padding:0 0.5cm;
width: 500px;
}
.PIE{
background-color: rgba(238, 130, 238, 0.384);
color: white;
border: 1px solid grey;
border-radius: 50%;
text-align: center;
margin:0.3cm 5cm;
}
.side{
width: 50%;
display: inline-block;
}
.main{
display: inline-block;
}