-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (54 loc) · 882 Bytes
/
style.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
.logo{
background-color: black;
}
.logo img{
height: 50px;
width: 50px;
border-radius: 50%;
}
#map {
width: 100%;
height: 500px;
}
footer{
background-color:black;
color: whitesmoke;
width:100%;
bottom: 0px;
}
.main-content{
display: flex;
}
.main-content .box{
flex-basis: 50%;
padding: 20px 30px;
}
.box h2{
text-transform:uppercase;
font-size: 1.125rem;
font-weight:500;
}
.box .content{
margin: 20px 0 0 0;
}
.left .content p{
font-family: sans-serif;
text-align: justify;
}
.left .content .authors{
margin: 20px 0 0 0;
}
.left .content .authors a{
padding: 0 5px;
}
.left .content .authors a span{
width: 20px;
height: 20px;
border-radius: 5px;
text-align: center;
line-height: 20px;
transition: 0.2s;
}
.left .content .authors a span:hover{
background: lightblue;
}