-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdetails.css
137 lines (120 loc) · 2.22 KB
/
details.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
@import url("https://fonts.googleapis.com/css2?family=Asap:ital@1&family=Istok+Web&family=Kings&family=Montserrat:ital,wght@1,300&family=Open+Sans:wght@300&family=Oswald:wght@500&family=Pacifico&family=Roboto:wght@400;500&family=Ubuntu:wght@300&family=Vollkorn&display=swap");
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: "Barlow Condensed", sans-serif;
font-family: "Exo 2", sans-serif;
font-family: "Fira Sans Condensed", sans-serif;
font-family: "Titillium Web", sans-serif;
}
body {
width: 65%;
/* margin: auto;
height: auto; */
}
#edf {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
color: black;
line-height: 30px;
}
#styl {
margin-top: 10%;
color: #133b5a;
letter-spacing: 1.2px;
font-family: "Fira Sans", sans-serif;
font-weight: 600;
text-transform: uppercase;
font-size: small;
margin-bottom: 8px;
}
.container {
margin-top: 20px;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: repeat(7, auto);
grid-auto-columns: 1fr;
gap: 10px 20px;
grid-auto-flow: row;
grid-template-areas:
"container1 news1"
"container1 news2"
"container1 news3"
"news4 news5"
"news6 news7"
"news8 news9"
"news10 .";
width: 100%;
}
.container > div > img {
width: 100%;
}
.container1 {
grid-area: container1;
font-family: "Istok Web", sans-serif;
}
.container1 > img {
height: 50%;
}
.container1 > p {
font-size: 18px;
margin-bottom: 15px;
}
.container1 > p:nth-child(2) {
font-size: 25px;
font-weight: 500;
}
.container1 > p:nth-child(5) {
font-size: 25px;
opacity: 0.6;
}
.news1 {
grid-area: news1;
}
.news1 > img {
width: 80%;
}
.news2 {
grid-area: news2;
}
.news3 {
grid-area: news3;
}
.news4 {
grid-area: news4;
}
.news5 {
grid-area: news5;
}
.news6 {
grid-area: news6;
}
.news7 {
grid-area: news7;
}
.news8 {
grid-area: news8;
}
.news9 {
grid-area: news9;
}
.news10 {
grid-area: news10;
}
/* #edf {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
#styl {
margin-top: 10%;
color: #133b5a;
letter-spacing: 1.2px;
font-family: "Fira Sans", sans-serif;
font-weight: 600;
text-transform: uppercase;
font-size: small;
margin-bottom: 8px;
} */