-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypage.css
105 lines (91 loc) · 1.45 KB
/
mypage.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
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
header {
font-family: "Helvetica", sans-serif;
display: block;
text-align: center;
background: #EE6C4D;
}
body {
background: #293241;
}
nav {
display:flex;
background: #3D5A80;
text-decoration: none;
color: black;
justify-content: center;
flex-direction: row;
align-content: space-evenly;
}
.nav-link {
padding: 0 50px 0 50px;
text-decoration: none;
color: #E0FBFC;
font-size: 20px;
font-family: Arial, Helvetica, sans-serif;
}
.nav-link a:hover {
color: #EE6C4D;
}
.flex-container-1 {
display: flex;
flex-direction: grid;
justify-content: center;
align-items: center;
background: #E0FBFC;
}
.wrapper {
text-align: center;
background-color: #E0FBFC;
}
.interests {
display: inline-block;
text-align: left;
}
.wrapper2 {
text-align: center;
background-color: #98C1D9;
}
.objectives {
display: inline-block;
text-align: left;
}
/* selector
.class
#id
element
{
attribute: value;
} */
p {
font-family: "Roboto", -apple-system, "San Francisco", "Segoe UI",
"Helvetica Neue", sans-serif;
}
.red-text {
color: red;
}
.blue-text {
color: blue;
}
.link {
display: inline-block;
margin: 2px;
width: calc(33% - 6px);
}
.center {
text-align: center;
}
.container {
width: 90%;
margin: auto;
background: #3D5A80;
justify-content: center;
}
img {
display: block;
height: 200;
width: 400px;
margin: auto;
}
.footer {
background: #3D5A80;
}