forked from HPQC-LABS/HPQC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
by-laws.css
44 lines (33 loc) · 860 Bytes
/
by-laws.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
/*Sets features of the container with all contents in it*/
#contentsContainer{
background-color: #FFF;
width: 80%;
display: inline-block;
padding-top: 20px;
padding-bottom: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
color: #79C255;
text-decoration: none;
}
/*Changing design of the list the links are shown in*/
#pdf li{
margin: 5px;
}
/*Design of links themselves*/
#pdfLink{
text-decoration: none;
color: #79C255 !Important;
}
/*Specific formatting for mobile / small browsers*/
@media screen and (max-width: 750px) {
#contentsContainer{
background-color: #FFF;
width: 100%;
display: inline-block;
padding-top: 20px;
padding-bottom: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
}