File tree Expand file tree Collapse file tree 1 file changed +70
-0
lines changed Expand file tree Collapse file tree 1 file changed +70
-0
lines changed Original file line number Diff line number Diff line change 88
88
.footer p {
89
89
font-size : 13px ;
90
90
font-weight : normal;
91
+ }
92
+
93
+ .container {
94
+ display : grid;
95
+ grid-template-columns : 1fr 5fr ;
96
+ gap : 4px ;
97
+ }
98
+
99
+ .header {
100
+ grid-column : 1 / 3 ;
101
+ display : grid;
102
+ grid-template-columns : 1fr 2fr ;
103
+ }
104
+
105
+ .logo {
106
+ justify-self : start;
107
+ }
108
+
109
+ .menu {
110
+ align-self : center;
111
+ }
112
+
113
+ .menu ul {
114
+ display : grid;
115
+ grid-template-columns : 1fr 1fr 1fr 1fr ;
116
+ }
117
+
118
+ .menu ul ,
119
+ .menu li {
120
+ list-style-type : none;
121
+ }
122
+
123
+ .nav ul ,
124
+ .nav li {
125
+ list-style-type : none;
126
+ }
127
+
128
+ .nav ul {
129
+ display : grid;
130
+ grid-template-columns : 1fr 1fr 1fr ;
131
+ }
132
+
133
+ .sidebar {
134
+ grid-row : 2 / 4 ;
135
+ display : grid;
136
+ gap : 50px ;
137
+ }
138
+
139
+ .side-content ,
140
+ .photo {
141
+ display : grid;
142
+ align-items : center;
143
+ }
144
+
145
+ .article {
146
+ display : grid;
147
+ grid-template-columns : repeat (auto-fit, minmax (250px , 1fr ));
148
+ gap : 15px ;
149
+ }
150
+
151
+ .article .card {
152
+ height : 180px ;
153
+ }
154
+
155
+ .card p {
156
+ padding : 5px ;
157
+ }
158
+
159
+ .footer {
160
+ grid-column : 1 / 3 ;
91
161
}
You can’t perform that action at this time.
0 commit comments