-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
44 lines (38 loc) · 1.03 KB
/
style.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
body{
margin:10;
}
a{color:black;
text-decoration:none;
text-align: center;
}
.saw{
color:gray;
}
#active{
color:gray;
}
h1{
border-bottom: 1px solid gray;
margin: 0;
padding:20px;
font-size:32px;
text-align: center;
}
h2{text-align: center;
margin: 30;}
h4{border-right: 1px solid gray;
width: 350px;
margin:20;
line-height: 170%;
padding: 20px;}
#grid{
display:grid;
grid-template-columns:400px 1fr ;
}
@media(max-width:800px){
#grid{
display:block;
}
h4{border-right:none;
}
}