-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (63 loc) · 1.07 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
65
66
67
68
69
70
71
72
73
74
* {
font-family: "Helvetica", "Times New Roman", sans-serif;
}
header {
background-color: rgb(0,19,54);
background: radial-gradient(circle, rgba(0,19,54,1) 0%, rgba(39,8,195,1) 100%);
color: white;
font-size: 26px;
text-align: center;
padding: 20px 50px;
border-radius: 20px 20px 0px
0px;
}
h2 {
font-size: 30px;
text-align: center;
color: white;
padding: 10px 30px;
margin: 0px auto;
background-color: darkblue;
border-radius: 10px 10px 0px 0px;
}
h3 {
font-size: 22px;
}
nav {
padding: 5px;
background-color: darkblue;
text-align: center;
font-size: 18px;
}
nav a {
color: white;
}
nav ul {
list-style: none;
padding: 0;
}
nav li {
display: inline-block;
margin: 5px 10px;
}
footer {
font-style: italic;
font-size: 14px;
text-align: right;
}
.container {
border: 3px solid darkblue;
border-radius: 15px;
margin: 50px 0px 100px;
}
.container-paragraphs {
padding: 100px 40px 0px 40px;
font-size: 18px;
margin: auto;
max-width: 900px;
}
footer {
background-color: darkblue;
color: white;
padding: 20px;
}