forked from Alexico1969/H33-06-starter-code
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (106 loc) · 1.6 KB
/
style.css
File metadata and controls
126 lines (106 loc) · 1.6 KB
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
body{
background-color: #e7e9f2;
background-image: url("img/bg.jpg");
background-size: cover;
font-family: 'Josefin Sans', sans-serif;
}
.container{
position: relative;
width: 1200px;
margin: auto;
}
.navbar{
font-size: 24px;
padding-top: 10px;
text-align: right;
display: flex;
justify-content: flex-end;
flex-wrap: wrap;
}
a {
text-decoration: none;
}
.nav-button{
border-radius: 5px;
color: black;
margin: 20px;
}
.selected {
border-bottom:3px solid #7594ec;
border-radius: none;
}
.logo {
flex-grow: 1;
margin: 20px;
text-align: left;
}
.main{
background-color: white;
min-height: 700px;
margin-top: 10px;
color: black;
border-radius: 10px;
margin: auto;
}
.page-image{
position: absolute;
width: 600px;
right: 10px;
top: 200px;
}
.banner{
margin-bottom: 20px;
}
.title{
font-size: 80px;
margin-left: 60px;
padding-top: 100px;
width: 600px;
}
.subtitle{
font-size: 18px;
margin-left: 60px;
margin-top: 40px;
font-family: 'Lato', sans-serif;
max-width: 470px;
line-height:1.7;
}
.header1{
font-size: 80px;
width: 600px;
text-align: center;
margin:auto;
padding-top:80px;
font-weight:normal;
}
.header{
font-size:50px;
}
.text1{
font-size: 14px;
}
.team-members{
display:flex;
justify-content:center;
}
.member{
width: 180px;
display:inline-block;
margin: 20px;
text-align: center;
border: #7594ec solid 2px;
border-radius: 15px;
padding: 10px;
margin-top: 20px;
}
.member-pic{
height: 200px;
}
@media (max-width: 1000px){
.navbar{
float: left;
}
.logo{
display: none;
}
}