-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (39 loc) · 700 Bytes
/
style.css
File metadata and controls
41 lines (39 loc) · 700 Bytes
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
body{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
max-width: 50em;
background-color: antiquewhite;
}
p{
background-color: rgb(133, 163, 137);
margin: 1em;
padding: 1em;
}
a:visited{
color: blueviolet;
}
a:hover{
text-decoration: none;
color: aqua;
background-color: bisque;
}
p b{
color: violet;
}
h2 + p{
font-size: larger;
}
strong, em {
background-color: brown;
}
.container{
width: 100%;
}
.col1,.col2{
background-color: aliceblue;
}
@media screen and (min-width: 600px){
.container{
display: grid;
grid-template-columns: 1fr 2fr;
}
}