-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
128 lines (106 loc) · 1.87 KB
/
styles.css
File metadata and controls
128 lines (106 loc) · 1.87 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
html{
scroll-behavior: smooth;
}
*{
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
transition: all .3s;
}
body{
display: flex;
flex-direction: column;
width: 100%;
align-items: center;
height: 100vh;
margin: 0;
}
.header{
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
width: 90%;
}
.add{
display: flex;
justify-content: center;
align-items: center;
border-radius: 100px;
width: 40px;
height: 40px;
color: black;
background-color: white;
font-size: 30px;
cursor: pointer;
transition: all .3s;
}
.add:hover{
background-color: black;
color: white;
}
.main{
margin: 100px ;
display: none;
flex-direction: column;
width: 90%;
max-width: 400px;
align-items: center;
justify-content: center;
border: solid 1px black;
padding: 10px;
border-radius: 4px;
}
#usernameInput{
height: 30px;
margin: 7px 0px;
padding: 3px;
}
.main textarea {
width: 300px;
height: 150px;
padding: 10px;
margin: 5px 0px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
resize: none;
}
.main button{
width: 20%;
height: 40px;
border: solid 1px black;
border-radius: 20px;
background-color: white;
transition: all .3s ;
}
.main button:hover{
background-color: black;
color: white;
}
#posts{
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.post{
margin: 10px 0 ;
width: 90%;
padding: 10px;
border: solid 1px black;
border-radius: 10px;
box-shadow: 10px 5px black;
}
.post h3{
font-size: 16px;
font-weight: 500;
margin: 10px;
}
.time {
text-align: right;
font-size: 13px;
color: rgb(180, 176, 176);
}