-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (96 loc) · 1.7 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans&display=swap');
#main {
width: 70%;
margin: 0 auto;
margin-top: 10px;
}
#postContent {
width: 100%;
height: 30px;
}
input {
border: 0px;
border-bottom: 2px solid black;
outline: none;
padding: 5px;
}
code {
font-family: 'Courier New', Courier, monospace;
background-color: #ddd;
}
.img {
width: 50px;
height: 50px;
border-radius: 50%;
margin-top: 15px;
margin-left: 15px;
padding: 0px;
}
#header {
text-align: center;
width: 80%;
margin: 0 auto;
}
body {
background-color: gradient;
}
a {
color: rgb(52, 204, 255);
}
.navbar {
background-color: white;
overflow: hidden;
display: flex;
flex-direction: space-evenly;
border-bottom: 1px solid black;
padding: 2px;
}
.navbar a {
float: left;
display: block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
cursor: pointer;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
.title {
margin: 0;
padding: 0;
font-size: 25px;
}
time {
color: grey;
font-size: 12.5px;
font-style: italic;
}
button {
padding: 10px;
background-color: white;
border: 0px;
cursor: pointer;
}
button:hover {
background-color: #ddd;
}
.post {
padding: 5px;
margin-bottom: 5px;
border-bottom: 1px solid black;
}
#createPost {
width: 100%;
}
#postCreateTitle {
width: 50%;
}
#postCreateContent {
width: 100%;
}
* {
font-family: 'Rethink Sans', sans-serif;
}