-
Notifications
You must be signed in to change notification settings - Fork 0
/
news.css
69 lines (51 loc) · 1.02 KB
/
news.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
:root {
--blue2: #264653;
--navColor: #1b1d29;
--white: #ffffff;
--white2: #f2f2f2;
--font1: "Lato", sans-serif;
--fontColor: #f7c8c8;
--bgColor: #e3e2df;
--bgColor2: #222629;
--greenColor: #61892f;
--greenColor2: #86c232;
--blackColor: #474b4f;
--blackColor2: #6b6c70;
--blueColor3: #65ccb8;
--whiteColor: #f2f2f2;
--blueColor4: #57ba98;
}
body {
background-color: #fff;
color: black;
}
.article-image {
width: 400px;
height: 200px;
overflow: hidden; /* Ensure that images don't overflow their container */
}
.article-image img{
width: 100%;
}
.news {
display: flex;
align-items: center;
justify-content: center;
margin: 20px;
padding: 10px 5px;
line-height: 23px;
}
.news-container{
margin: 0px;
padding: 5px 20px;
}
.news-details {
width: 100%;
margin: 10px 20px;
padding: 4px 5px;
}
.news-details h3 a{
text-decoration: none;
color: #1b1d29;
/* color: var(--blueColor4); */
}