-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
166 lines (139 loc) · 2.77 KB
/
styles.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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
html, body {
background-color: rgb(0, 20, 40);
color: rgb(210, 230, 250);
margin: 0;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.title {
color: rgb(1, 1, 61);
background-color: rgb(210, 234, 255);
text-align: center;
margin: 40px auto;
border: solid;
padding: 40px;
width: 300px;
border-radius: 40px;
box-shadow: 2px 2px 2px rgb(209, 224, 253);
}
p {
margin: 20px 90px;
line-height: 35px;
padding-bottom: 30px;
}
.head {
margin: 20px 70px;
border-bottom: solid;
padding-bottom: 10px;
}
.menu {
display: flex;
justify-content: space-evenly;
margin-bottom: 20px;
}
.main, .menu-item {
background-color: rgb(0, 30, 110);
color: rgb(210, 230, 250);
padding: 30px;
flex-grow: 1;
text-align: center;
text-decoration: none;
}
.main {
background-color: rgb(0, 20, 40);
}
.menu-item:hover {
background-color: rgb(10, 40, 140);
}
.menu-item:active {
background-color: rgb(10, 70, 190);
}
/* --------- log-in styles ------------- */
.log-in {
display: flex;
justify-content: center;
flex-direction: column;
margin: auto;
width: 300px;
}
.log-in-element {
justify-content: center;
}
h2 {
margin-bottom: 10px;
}
input {
margin-bottom: 5px;
width: 300px;
height: 25px;
border-radius: 10px;
padding: 1px 10px;
}
button {
margin-top: 30px;
height: 33px;
width: 125px;
padding: 7px 30px;
border-radius: 10px;
background-color: rgb(144, 163, 255);
border: solid;
margin-bottom: 70px;
}
button:hover {
background-color: rgb(121, 142, 250);
}
button:active {
background-color: rgb(99, 125, 252);
}
/*------------ main page styles -------------*/
.search {
text-align: center;
padding: 40px 70px;
border-bottom: solid;
border-top: solid;
}
.search-button {
width: 60px;
padding:5px;
}
/*------------- post styles -----------------*/
.im {
display: flex;
align-items: center;
justify-content: center;
border: dotted;
height: 200px;
width: 200px;
margin: 30px auto;
border-radius: 40px;
border-width: 4px;
font-weight:900;
font-size: 40px;
}
.im:hover {
background-color: rgb(0, 52, 101);
}
.newPost {
display: flex;
flex-direction: column;
background-color: black;
justify-content: center;
height: 500px;
width: 700px;
margin: auto;
border: double;
border-radius: 40px;
border-width: 10px;
margin-bottom: 70px;
}
.postName {
margin-bottom: 10px;
font-size: 30px;
padding-bottom: 0;
}
img {
height: 300px;
width: 500px;
margin: 20px auto;
border-radius: 20px;
box-shadow: 3px 3px 3px rgb(196, 196, 196);
}