-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleTeam.css
77 lines (72 loc) · 1.29 KB
/
styleTeam.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
body{
width: 100%;
height: 100%;
padding-left: 0;
}
.container-fluid{
padding-left: 0;
}
#logo{
padding-top: 5%;
padding-left: 15%
}
#rightCol{
position: fixed;
right: 250px;
height: 100%;
margin-right: -250px;
background: #000;
padding-top: 10%;
padding-bottom: 0;
background-color: #3767B1;
box-shadow:0px -8px 5px 13px #3767B1;
}
#rightCol a:hover{
background-color: #3767B1;
}
#rightCol a:focus{
background-color: #3767B1;
}
#rightCol a{
text-align:center;
padding-bottom: 10%;
font-family: 'Roboto:700', sans-serif;
color: white;
font-size: 100%;
}
#teamExplanation{
color:white;
font-family: 'Roboto', sans-serif;
text-align:center;
line-height: 100%;
font-size: 100%;
font-weight: bold;
}
#howWorksExplanation, #needExplanation, #newsExplanation{
padding-left: 2%;
color:white;
font-family: 'Roboto', sans-serif;
text-align:center;
line-height: 100%;
font-weight: bold;
font-size: 100%;
}
.arrayPictures{
padding-left: 10%;
}
.teamPictures{
padding-bottom: 5%;
}
.teamPictures img{
width: 150px;
height: 150px;
}
/* The starting CSS styles for the enter animation */
.animate-enter {
transition:0.5s linear all;
opacity:0;
}
/* The finishing CSS styles for the enter animation */
.animate-enter.animate-enter-active {
opacity:3;
}