-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (82 loc) · 1.57 KB
/
Copy pathstyle.css
File metadata and controls
102 lines (82 loc) · 1.57 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
body {
font-family: 'Muli', sans-serif;
}
.center {
display:flex;
justify-content:center;
padding-top: 5px;
padding-bottom: 2em;
}
.dropdown-item:active {
color: white;
background-color: #FDB515;
}
.funders-collaborators-img {
width: 50%;
}
.icon-align {
position: relative;
bottom: 2px;
}
.img-about, .img-products {
max-width: 100%;
height: auto;
}
#introduction {
background-image: linear-gradient(to bottom, rgba(250, 250, 250, 1) 0%,rgba(250, 250, 250, 0.9) 100%), url('images/undraw/introduction.svg');
background-size: 100% 100%;
background-repeat: no-repeat;
}
.navbar-toggler {
border: 0px;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
color: #FFF;
background-color: #FDB515;
}
.nav-pills .nav-link{
color: black;
}
.rounded-circle {
width: 125px;
height: 125px;
}
.team-max-width {
max-width: 50%;
}
.text-berkeley-blue {
color: #003262;
}
.text-california-gold {
color: #FDB515;
}
.title-hr {
width: 100px;
}
@media only screen and (max-width: 768px) {
/* For mobile phones: */
.img-about, .img-products {
height: 200px;
}
.img-mobile {
display: none;
}
.rounded-circle {
width: 100px;
height: 100px;
}
#team-tabs {
text-align: center;
margin: auto 5vh;
}
}
@media screen and (min-width: 1200px) {
/* For PC and Laptop Monitors: */
#introduction {
background-repeat: repeat-x;
background-size: contain;
}
#team {
min-height: 760px;
}
}