-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (87 loc) · 1.23 KB
/
style.css
File metadata and controls
94 lines (87 loc) · 1.23 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
* {
margin: 0;
padding: 0;
}
body{
font-family: Georgia, Serif;
font-size: 10px;
}
h1 {
font-size: 3rem;
}
h4 {
font-size: 1.8rem;
margin: 30px 0 20px 0;
}
p {
margin-bottom: 20px;
}
ul {
padding-left: 20px;
}
li {
margin-bottom: 1rem;
}
.content {
max-width: 600px;
margin: 100px auto 0 auto;
font-size: 1.4rem;
}
@media all and (max-width: 768px) {
.main {
width: 90%;
margin: 0 auto;
}
.content {
margin: 20px auto 0 auto;
}
}
.title {
width: 100%;
height: 400px;
background: transparent url(img/back.jpg) repeat;
position: relative;
}
.title > h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}
@media all and (max-width: 768px) {
.title > h1 {
position: relative;
width: 90%;
margin: 0 auto;
}
}
h3 {
margin: 80px 0 40px 0;
}
.small {
font-size: 1rem;
}
.team-wrap {
display: flex;
margin-bottom: 60px;
}
.team-member {
text-align: center;
padding: 10px
}
.team-member > img {
border-radius: 100%;
}
@media all and (max-width: 768px) {
.team-member > img {
max-width: 120px;
}
}
.project-description {
margin-top: 40px;
}
.project-description > h5 {
font-size: 1.5rem;
margin-bottom: 10px;
}