-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlayout.css
62 lines (56 loc) · 936 Bytes
/
layout.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
52
53
54
55
56
57
58
59
60
61
62
.navbar{
background: black;
height: 50px;
margin-bottom: 15px;
text-align: center;
color: white;
padding: 15px;
}
.footer{
background: blue;
height: 50px;
margin-bottom: 15px;
text-align: center;
color: white;
padding: 15px;
}
.photo{
background: blue;
height: 50px;
margin-bottom: 15px;
text-align: center;
color: white;
padding: 10px;
}
#content{
display: flex;
gap: 15px;
}
.sidebar{
background: grey;
margin-bottom: 15px;
text-align: center;
color: white;
padding: 15px;
width: 30%;
}
.innercontent{
background: yellow;
/* height: 50px; */
margin-bottom: 15px;
text-align: center;
color: black;
width: 69%;
}
.paragraph{
display: flex;
padding: 10px;
padding-top: 2%;
align-items: center;
}
.details{
width: 50%;
padding: 5px;
margin: 5px;
border: 1px solid black;
}