-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathmain.css
More file actions
executable file
·133 lines (111 loc) · 2.27 KB
/
main.css
File metadata and controls
executable file
·133 lines (111 loc) · 2.27 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/* ==========================================================================
Author's custom styles
========================================================================== */
body {
font-family: 'Arima Madurai', serif;
text-align: center;
display: flex;
justify-content: center;
flex-direction: column;
background-color: #EEEEEE;
}
p {
font-family: sans-serif;
}
h1 {
font-size: 48px;
}
.jumbotron {
background: #ff407c; /* For browsers that do not support gradients */
background: -webkit-radial-gradient(#915f6d, #915f6d); /* Safari 5.1 to 6.0 */
background: -o-radial-gradient(#915f6d, #915f6d); /* For Opera 11.6 to 12.0 */
background: -moz-radial-gradient(#915f6d, #915f6d); /* For Firefox 3.6 to 15 */
background: radial-gradient(#915f6d, #915f6d); /* Standard syntax */
color: #fff;
margin-bottom: -1px;
}
.row {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
}
.faq-items {
padding-bottom: 50px;
}
.faq-question {
display: flex;
flex-direction: column;
}
.faq-answer {
text-align: left;
}
.content {
background-color: #384452;
color: #fff;
}
.justify-text {
text-align: justify;
}
.logo-cover {
width: 30%;
padding-bottom: 20px;
}
footer {
background-color: #384452;
color: #fff;
overflow-x: auto;
margin-bottom: -20px;
padding: 20px 0 20px 0;
}
.social-icons {
display: inline-flex;
justify-content: center;
}
.social-icons a {
width: 30px;
}
.glyphicon, .fa {
font-size: 25px!important;
margin: 5px;
color: #F5C8D5;
}
.glyphicon:hover, .fa:hover {
color: #fff;
}
#motto {
font-size: 50px;
color: #F5C8D5;
}
.row.content {
padding-left: 15px;
padding-right: 15px;
padding-top: 15px;
padding-bottom: 15px;
}
.navbar-brand {
color: #FFFFFF;
}
@media screen and (max-width: 480px) {
.container img { width: 50%;}
.container p {font-size: 100%;}
}
/* Add a black background color to the top navigation */
.topnav {
overflow: hidden;
}
/* Style the links inside the navigation bar */
.topnav a {
float: right;
display: block;
color: rgb(174, 159, 163);
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
.topnav a:hover {
color: #FFFFFF;
}