-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (64 loc) · 1.05 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
body{
margin: 0;
}
h1{
font-size:45px;
text-align: center;
border-bottom: 1px solid gray;
margin: 0px;
padding: 20px;
}
.title{
text-decoration: none;
color: black;
}
ol{
width: 120px;
border-right: 1px solid gray;
margin: 0;
padding: 20px;
}
.lis{
text-decoration: none;
}
.lis:visited{
color:rgb(57, 78, 172) ;
}
#grid{
display: grid;
grid-template-columns: 150px 1fr;
}
#grid ol{
padding-left: 33px;
}
#article{
padding-left: 45px;
}
@media(max-width: 800px){
#grid{
display: block;
}
ol{
border-right: none;
}
h1{
border-bottom: none;
}
}
.def{
color:rgb(57, 78, 172);
text-decoration: underline;
}
#btn{
padding-bottom: 15px;
}
.btn1{
padding: 5px 10px;
background-color: rgb(247, 241, 220);
border : 1px solid gray;
}
.btn2{
padding: 5px 38px;
margin-bottom: 10px;
background-color: rgb(105, 126, 104);
}