-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
95 lines (94 loc) · 1.76 KB
/
main.css
File metadata and controls
95 lines (94 loc) · 1.76 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
.view-posts {
/* background-color: #DFBB9D; */
background-color: #F7E2D6;
}
.posts{
margin-top: 100px;
}
.posts > div > a {
margin-bottom: 20px;
}
.nameP {
display: flex;
justify-content: flex-end;
color: #B9005B;
}
.create{
margin-top: 150px;
}
.create h1 {
margin-left: 43%;
color: #513252;
}
#myForm {
margin-top: 50px;
display: grid;
gap: 30px;
margin-bottom: 40px;
}
.feedback-input {
color: black;
font-weight: 500;
font-size: 18px;
border-radius: 5px;
line-height: 22px;
background-color: transparent;
border: 2px solid #3586ff;
transition: all 0.3s;
padding: 13px;
margin-bottom: 15px;
width: 100%;
box-sizing: border-box;
outline: 0;
}
.feedback-input:focus {
border: 2px solid #3586ff;
}
textarea {
height: 150px;
line-height: 150%;
resize: vertical;
}
#myForm [type="submit"] {
width: 100%;
background: #513252;
border-radius: 5px;
border: 0;
cursor: pointer;
color: white;
font-size: 24px;
padding-top: 10px;
padding-bottom: 10px;
transition: all 0.3s;
margin-top: -4px;
font-weight: 700;
width: 50%;
margin-left: 26%;
}
#myForm [type="submit"]:hover:hover {
background: green;
}
.posts-grid{
display: grid;
gap: 30px;
}
.col{
background-color: pink;
padding: 2%;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
.h2-posts{
color: rgb(39, 22, 22);
}
.p-heading{
font-size: 22px;
}
.text{
color: #1A3C40;
}
.edit-delete{
display: flex;
}