forked from YahyaDarwich/Getting-Over-It
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.css
More file actions
122 lines (122 loc) · 2.09 KB
/
script.css
File metadata and controls
122 lines (122 loc) · 2.09 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
:root {
font-family: "Roboto", sans-serif;
--main-blue: #3f51b5;
--main-gray: rgb(233, 233, 233);
}
body {
margin: 0px;
}
.navbar {
background-color: #333;
}
.header {
text-align: center;
margin-top: 20px;
}
.navbar li {
border-right: 0.1px solid gray;
padding: 10px 25px;
font-size: 1.2rem;
text-transform: uppercase;
}
.list {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
list-style: none;
padding: 0px;
}
a {
text-decoration: none;
color: white;
}
.main-div > h1 {
margin-top: 15px;
padding-top: 15px;
padding-bottom: 20px;
color: var(--main-blue);
text-transform: capitalize;
}
.main-div {
text-align: center;
background-color: var(--main-gray);
border-radius: 25px;
width: 90%;
margin: auto;
}
.main-div img:last-child {
width: 70%;
height: auto;
margin-bottom: 10px;
border-radius: 25px;
}
.content {
text-align: left;
margin: 10px;
padding: 5px;
}
.content p {
font-size: 1.1rem;
line-height: 25px;
}
.content h2 {
color: var(--main-blue);
text-transform: capitalize;
}
.footer {
background-color: #333;
padding: 10px;
color: gray;
border-top: 2px solid gray;
}
.comment-section {
margin-top: 50px;
padding: 20px;
background-color: #333;
}
.comment-form {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 30px;
height: 400px;
margin-left: 5%;
color: gray;
width: 410px;
font-size: 1rem;
}
.comment-form input {
width: 300px;
background-color: var(--main-gray);
border: 0.1px solid gray;
margin-bottom: 10px;
height: 20px;
}
.comment-form textarea {
width: 400px;
background-color: var(--main-gray);
margin-bottom: 10px;
height: 50px;
}
label p {
margin: 0px;
}
.comment-form > div {
background-color: var(--main-gray);
padding: 8px;
border-left: 5px var(--main-blue) solid;
width: 385px;
}
.comment-form h3 {
color: var(--main-blue);
}
.comment-form button {
background-color: var(--main-blue);
width: 120px;
height: 40px;
border-radius: 5px;
font-size: 0.9rem;
border: 0px;
}