-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (86 loc) · 1.58 KB
/
style.css
File metadata and controls
86 lines (86 loc) · 1.58 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
body{
margin: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: #333;
}
a{
color: white;
text-decoration: none;
}
.banner{
height: 200px;
width: 100%;
background-color: #4158D0;
background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
position: relative;
}
.contact-links{
position: absolute;
right: 30px;
bottom: 30px;
border-radius: 5px;
display: flex;
gap: 30px;
font-size: 20px;
background-color: rgba(0,0,0,0.5);
padding: 10px;
}
.contact-links>*{
transition: all .5s ease-in-out;
}
.contact-links>*:hover{
transform: rotate(-10deg);
color: gray;
}
.details{
color: #fff;
padding: 50px;
padding-bottom: 20px;
position: relative;
}
.person-img{
width: 200px;
height: 200px;
border-radius: 50%;
border: 5px solid #ddd;
box-shadow: 0 0 10px #000;
position: absolute;
top: -100px;
left: 50%;
transform: translateX(-50%);
display: block;
object-fit: cover;
object-position: 0px -30px;
}
.about{
max-width: 700px;
margin: auto;
margin-top: 100px;
text-align: center;
}
.divisions{
width: 100%;
display: flex;
justify-content: space-evenly;
margin-top: 30px;
}
.division_heading{
text-align: center;
}
.divisions ul{
list-style-type: none;
text-align: center;
padding: 0;
}
.divisions li{
line-height: 2;
}
@media screen and (max-width: 700px) {
.divisions{
flex-direction: column;
}
.contact-links{
top: 30px;
bottom: unset;
}
}