-
Notifications
You must be signed in to change notification settings - Fork 0
/
Blog.css
73 lines (71 loc) · 1.23 KB
/
Blog.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
63
64
65
66
67
68
69
70
71
72
73
{
padding: 0;
margin: 0;
}
body{
display: grid;
grid-template-columns: 100%;
grid-template-rows: auto;
grid-template-areas: "header"
"nav"
"main"
"footer";
background: rgb(0, 183, 255) ;
background-image: url("./images/Screenshot\ \(25\).png");
}
nav{
display: flex;
justify-content: space-between;
grid-area: nav;
background-color: lightblue;
color: rgb(255, 0, 0);
line-height: 10vh;
}
nav ul{
display: flex;
justify-content: space-around;
list-style: none;
width: 70vw;
}
.NAMES{
display: flex;
position: relative;
top: 200px;
left: 0px;
}
.PROJECT span{
position: relative;
top: 00px;
right: 0px;
}
.Project2 span{
position: relative;
top: 00px;
right: 0px;
}
.Project3 span{
position: relative;
top: 00px;
right: 0px;
}
.PROJECT{
display: flex;
width: 300px;
height: 300px;
padding-left: 100px;
padding-right: 200px;
}
.Project2{
display: flex;
width: 300px;
height: 300px;
padding-left: 20px;
padding-right: 200px;
}
.Project3{
display: flex;
width: 30px;
height: 300px;
padding-left: 20px;
padding-right: 200px;
}