-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst-stylesheet.css
More file actions
52 lines (47 loc) · 1006 Bytes
/
first-stylesheet.css
File metadata and controls
52 lines (47 loc) · 1006 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
42
43
44
45
46
47
48
49
50
51
52
* { box-sizing: border-box;}
/*https://necolas.github.io/normalize.css/8.0.0/normalize.css*/
header {
text-align: center;
font-family: "Trebuchet MS,", Helvetica, sans-serif;
color: teal;
text-shadow: 2px 5px 10px ;
padding: 1rem 2rem;
border: 0 1rem;
border-style: groove;
background-color: aliceblue;
margin: .1rem;
}
.hover{
color: orangered;
}
body {
margin: 2rem;
font-family: "Palatino Linotype,", "Book Antiqua", Palatino, serif;
color: chartreuse;
padding: 0.5rem 2rem;
border-color: dimgrey;
border-style: inset;
background-color:dimgray;
}
body p{
text-align: justify;
}
body nav {
text-align: center;
color: red;
background-color: antiquewhite;
opacity: .4;
height: 1.5rem;
width: 15rem;
}
footer {
text-align: center;
font-family: "Lucida Console", Manaco, monospace;
letter-spacing: 4px;
padding: .5rem 3rem;
color: lightcoral;
border: dashed 0.1rem yellow;
background-color: darkslategray;
height:10rem;
width: 20rem;
}