-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.txt
106 lines (90 loc) · 1.51 KB
/
css.txt
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
body {
margin: 0;
padding: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #1c2331;
color: #fff;
}
h1,
h2 {
font-family: "Roboto Slab", serif;
text-align: center;
}
h1 {
font-size: 3em;
margin: 0;
padding: 1em;
background-color: #0077b6;
color: #fff;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
text-align: center;
}
nav ul li {
display: inline-block;
margin: 0 0.5em;
}
nav ul li a {
color: #fff;
text-decoration: none;
padding: 0.5em 1em;
border: 1px solid #fff;
transition: all 0.3s ease;
}
nav ul li a:hover {
background-color: #fff;
color: #1c2331;
}
main {
margin: 2em;
}
section {
margin-bottom: 2em;
}
section h2 {
font-size: 2em;
margin: 0 0 1em;
padding-bottom: 0.5em;
border-bottom: 1px solid #0077b6;
color: #fff;
}
section ul {
list-style: none;
margin: 0;
padding: 0;
}
section li {
margin-bottom: 0.5em;
color: #fff;
}
section li:before {
content: "\2022";
font-size: 1.5em;
margin-right: 0.5em;
color: #0077b6;
}
#contact p {
margin: 0.5em 0;
}
#contact a {
color: #fff;
text-decoration: none;
border-bottom: 1px solid #fff;
}
#contact a:hover {
color: #1c2331;
background-color: #fff;
}
.Image-container {
text-align: center; /* Align images to center of parent container */
}
.Image-container img {
display: inline-block; /* Display images in a single row */
vertical-align: middle; /* Align images vertically */
width: 400px;
height: 400px;
margin-left: 20px;
}