-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (78 loc) · 1.36 KB
/
style.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
*{
margin:0;
padding: 0;
}
#navbar{
background-color: white;
height:100px;
width:100vw;
z-index:1;
position: fixed;
border-bottom: 3px solid lightslategrey;
}
.logo{
margin-left: 100px;
margin-top: 30px;
}
.logo2{
margin-left: 80vw;
margin-bottom: 100vh;
}
.post-container{
height:100vh;
width:50%;
border-left: 2px solid black;
background-color:powderblue;
display: flex;
z-index: 2;
}
h2{
color: black;
margin-top: 30px;
margin-left: 15px;
}
.post{
height:300px;
width:700px;
background-color: whitesmoke;
border: 2px solid lightgray;
margin-top: 50vh;
margin-left: 40px;
}
.main-cont{
margin:2rem 0rem;
display: flex;
flex-wrap: wrap;
gap: 2rem;
justify-content: space-evenly;
}
.feed-cont{
height: 10rem;
width: 15rem;
background-color:cornsilk;
position: relative;
}
.textArea input{
height:100px;
width:500px;
margin-left: 80px;
margin-top: 25px;
font-size: 20px;
}
.postbtn{
height:40px;
width:80px;
border-radius:25px;
background-color: rgb(26, 26, 121);
color: white;
margin-left: 500px;
margin-top: 15px;
font-size: 20px;
}
.feed-ticket{
height: 100vh;
width:60vw;
float:right;
background-color: black;
z-index: auto;
}