-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteamstylesheet.css
161 lines (148 loc) · 2.64 KB
/
teamstylesheet.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
@import url('https://fonts.googleapis.com/css?family=Roboto:400,600');
*{
margin:0;
}
body{
/*background-image: url(image/Mountain1.png);
background-size:cover;*/
}
header {
display:flex;
flex-direction:column;
flex-wrap:wrap;
top: 0;
left: 0;
right: 0;
}
nav{
position: fixed;
width:100%;
height:4.28em;
/*height:60px*/
background-color:rgb(250,250,250);
}
nav p{
margin-left: 7em;
/*margin-left:150px;*/
font-family:arial;
color:black;
font-size:24px;
line-height:2.5em;
/*line-height:55px;*/
float:left;
padding: 0em 1.42em;
/* padding: 0px 20px;*/
}
#name{
text-decoration: none;
color:rgb(88, 97, 204);
font-weight: 500;
}
#name:hover{
color:rgb(73,82,189);
}
#logo{
height:60px;
right:475px;
position:relative;
}
nav ul{
float:right;
margin-right:7em;
/*margin-right: 150px;*/
}
nav ul li{
float:left;
list-style:none;
/*activates position absolute within the list*/
position:relative;
}
/* these are the links */
nav ul li a {
display:block;
font-family:arial;
color:black;
font-size:14px;
padding:1.5em 1em;
/*padding:21px 14px;*/
text-decoration:none;
border-bottom: white 0em;
}
nav ul li a:hover {
color:rgb(50,130,250);
border-bottom: rgb(88, 97, 204) solid 0.28em;
/*transition:0.2s;*/
}
nav ul li ul{
display:none;
position:absolute;
background-color:white;
padding:10px;
border-radius:0em 0em 0.28em 0.28em;
}
nav ul li:hover ul{
display:block;
}
nav ul li ul li {
width:180px;
border-radius:0.28em;
}
nav ul li ul li a{
color:black;
display:block;
padding: 0.57em 1em;
/*padding:8px 14px;*/
border-bottom: none;
}
nav ul li ul li:hover a{
color: rgb(88, 97, 204);
/*color:rgb(30,100,255);*/
border-bottom: none;
}
section{
font-family: 'Roboto', sans-serif;
height: 60vh;
display:flex;
justify-content: center;
border: 1px solid black;
background-size: cover;
background-position: center center;
background-attachment: scroll;
}
/*footer stuff begins here*/
footer{
height: 20vh;
background-color:black;
font-size:12px;
font-family: 'Roboto', sans-serif;
}
.footer-left{
padding-top:2em;
width: 50%;
margin:0;
color:white;
font-size:16px;
}
.footer-links{
width:50%;
}
.fab{
/*float:right; positioning*/
padding:.5em .25em 0em .25em;
color: rgb(88, 97, 204);
}
.fa-facebook:hover {
color:rgb(0,172,237);
}
.fa-youtube:hover {
color:red;
}
.fa-twitter:hover{
color:rgb(50,190,220);
}
.fa-instagram:hover {
color:rgb(255,105,180);
}
.fa-github:hover {
color:rgb(240, 215, 77);
}