This repository was archived by the owner on Jan 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 477
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (64 loc) · 1.46 KB
/
style.css
File metadata and controls
77 lines (64 loc) · 1.46 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
/**
* Add your custom styles below
*
* Remember:
* - Be organised, use comments and separate your styles into meaningful chunks
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
*/
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background-color: #f1f1f1;
}
.header h1{
font-family: Verdana, Geneva, Tahoma, sans-serif;
padding-top: 25px;
text-align: center;
color:#000000;
}
.container{
display: flex;
letter-spacing: 1px;
font-size: 17px;
padding: 10px;
display: inline-block;
text-align:left;
border:2px dashed rgb(142, 183, 142);
border-radius: 45px;
margin-top: 55px;
margin-right: 100px;
margin-bottom: 100px;
margin-left: 15rem;
}
.section-heading{
text-align: center;
margin-bottom: 1.5rem;
}
.articles .article-image img{
font-size: 14rem;
margin-right: 15px;
border-radius: 8px;
margin-left: 45px;
}
.articles .article {
cursor: pointer;
}
.articles .article-description{
font-family: 'Times New Roman', Times, serif;
font-size: 1.4rem;
text-align: justify;
margin:2.2rem 0;
font-weight: 300;
display: block;
padding-bottom: 0.5rem;
}
footer{
background-color: darkgray;
color: #fff;
text-align: center;
padding: 2rem 0;
}