-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
141 lines (123 loc) · 1.95 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
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
text-decoration: none;
}
.container {
padding: 0 16rem;
}
.navbar {
font-size: 45px;
display: flex;
justify-content: space-between;
border-bottom: 6px rgb(231, 231, 231) solid;
}
.brand {
margin: 1rem 0;
}
.menu {
margin: 1rem 0;
}
.menu a {
padding: 0 1rem;
}
a:hover {
opacity: 0.8;
}
section.container {
background-color: #ffffff;
padding: 30px 16rem;
}
#heading {
text-align: center;
font-size: 50px;
margin-bottom: 2rem;
}
.flex-group h1,
.form h1 {
text-align: center;
font-size: 50px;
}
.card {
background-color: rgb(248, 248, 248);
font-size: x-large;
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
padding: 20px 40px;
margin-bottom: 30px;
transition: 0.1s;
border-left: 5px rgba(0, 0, 0, 0) solid;
}
.card:hover {
border-left: 5px red solid;
}
.card h3 {
margin-left: -20px;
font-size: 40px;
margin-bottom: 10px;
}
.card .author {
text-align: end;
}
#blogForm,
button {
font-size: 25px;
margin: 10px;
}
#blogForm label {
color: rgb(83, 27, 133);
}
button {
font-size: 20px;
color: white;
background-color: blueviolet;
padding: 10px 20px;
border-radius: 9999px;
}
button:focus {
outline: none;
}
button:hover {
background-color: rgb(104, 32, 170);
}
#blogForm input {
font-size: 20px;
display: block;
margin: 16px 0;
margin-bottom: 45px;
padding: 6px 10px;
width: 100%;
border: 1px solid #ddd;
}
.button-group {
display: flex;
justify-content: space-between;
align-items: center;
}
.flex-group {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 2rem;
}
#form-status {
color: red;
}
.blog-para {
padding: 0 20px;
margin: 70px 0;
font-size: x-large;
}
#author {
font-size: 2rem;
}
#blog-header {
margin-bottom: 30px;
}
#blog-btn a {
color: #ffffff;
}
#blog-btn a:hover {
opacity: 1;
}