-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFavoriteLanguage.css
More file actions
58 lines (48 loc) · 979 Bytes
/
FavoriteLanguage.css
File metadata and controls
58 lines (48 loc) · 979 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
53
54
55
56
57
58
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap');
*{
font-family: 'Open Sans', sans-serif;
}
.banner-wrap{
display: block;
align-items: center;
text-align: center;
background-color:#e87b39;
}
.navbar{
display: flex;
align-items: center;
justify-content: space-between;
height: 80px;
background-color: #000000;
}
.navlink{
display: flex;
justify-content: space-evenly;
width: 420px;
}
.link{
text-decoration: none;
font-weight: bold;
color: #ffffff;
}
.leftcolumn{
float: left;
margin-top:20px;
width: 15%;
display: inline;
}
.rightcolumn{
float: right;
border-style: solid;
text-indent: 10px;
width: 85%;
}
.content:after {
content: "";
display: table;
clear: both;
margin: auto;
}
.p{
font-size: 12px;
}