-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinks.css
115 lines (92 loc) · 1.75 KB
/
links.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
106
107
108
109
110
111
112
113
114
115
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
body {
background-image: url(https://images.unsplash.com/photo-1523305846158-488dedcf8629?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80);
background-attachment: fixed;
background-position: center;
font-family: Georgia, serif;
}
* {
box-sizing: border-box;
}
.topnav {
overflow: hidden;
background-color: #333;
width:100%;
display: flex;
justify-content: space-between;
font-family: 'Bebas Neue', cursive;
position: fixed;
top:0;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 30px;
font-family: 'Bebas Neue', cursive;
}
.topnav-header {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 30px;
font-family: 'Bebas Neue', cursive;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #72768a;
color: white;
}
.bg {
background-position: center;
background-size: cover;
}
.WebContainer{
width:100%;
min-width:1000px;
height:auto;
}
.img {
max-width: 100%;
display: block;
}
.column-2 {
color: white;
float: left;
width: 45%;
padding: 40px;
padding-left:70px;
padding-right: 70px;
height: 475px;
margin: 5rem;
background-color: black;
line-height:2;
border-radius: 1rem;
}
.chalew {
color:white;
}
a:link {
text-decoration: none;
}
a:hover {
background-color: steelblue;
}
@media screen and (max-width: 900px) {
.column-2 {
font-size: .6rem;
padding-left:10px;
padding-right: 10px;
margin-top: 100px;
}
.topnav-header {
display: none;
}
}