-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.css
More file actions
95 lines (62 loc) · 1.38 KB
/
faq.css
File metadata and controls
95 lines (62 loc) · 1.38 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
.navbar {
background-color: gold;
margin: auto;
padding: 1.5%;
padding-left: 0%;
border-radius: 25px;
}
.navbar li {
margin: auto;
padding: 1.5%;
display: inline;
color: black;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.navbar li.button {
transition: 0.1s;
}
.navbar li.icon {
width: 150px;
height: 150px;
}
.blog {
background-color: goldenrod;
border-radius: 10px;
margin: auto;
padding-top: 5%;
padding-bottom: 5%;
padding-left: 10%;
padding-right: 10%;
font-family: Arial, Helvetica, sans-serif;
}
.blog .title {
font-size: large;
color:white;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.blog .text {
color:white;
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter;
font-size: medium;
}
body {
background-image: url('https://github.com/PGWECN/Brand-Kit/blob/Images/PGWECN%20Logos/PGWECN_BG.png?raw=true');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
@media only screen and (max-width:500px) {
/* For mobile phones: */
.navbar, .blog, .text, .title {
width: 100%;
}
}
@media only screen and (max-width:800px) {
/* For tablets: */
.navbar, .blog, .text, .title {
width: 80%;
padding: 0;
}