JPLTedCas commited on
Commit
cdcadb2
·
1 Parent(s): ee7cce8

Upload style.css

Browse files
Files changed (1) hide show
  1. style.css +166 -16
style.css CHANGED
@@ -1,28 +1,178 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  }
5
 
6
  h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
 
 
 
 
 
 
 
 
 
 
9
  }
10
 
11
  p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
 
 
 
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*=============================================================
2
+ Authour URI: www.binarytheme.com
3
+ License: Commons Attribution 3.0
4
+
5
+ http://creativecommons.org/licenses/by/3.0/
6
+
7
+ 100% To use For Personal And Commercial Use.
8
+ IN EXCHANGE JUST GIVE US CREDITS AND TELL YOUR FRIENDS ABOUT US
9
+
10
+ ======================================================== */
11
+
12
+
13
+
14
+ /*=======================================
15
+ GENERAL STYLES
16
+ ==================================================*/
17
  body {
18
+ font-family: 'Ruluko', sans-serif;
19
+ font-size:14px;
20
+ }
21
+
22
+ .nav a {
23
+ color:#ffffff !important;
24
+ }
25
+ .navbar-header a {
26
+ color:#ffffff !important;
27
+ padding-right:100px;
28
+ }
29
+
30
+ .text-center {
31
+ text-align:center;
32
+ }
33
+
34
+ h1, h2, h3, h4, h5, h6 {
35
+ font-family: 'Ruluko', sans-serif;
36
  }
37
 
38
  h1 {
39
+ line-height:120px;
40
+ text-transform:uppercase;
41
+ color: #395b74;
42
+ font-size:50px ;
43
+ font-weight:900!important;
44
+ }
45
+ h3 {
46
+ line-height:30px;
47
+ padding-bottom:20px;
48
+ }
49
+ h4 {
50
+ line-height:40px;
51
+ padding-bottom:40px;
52
  }
53
 
54
  p {
55
+ font-weight:300;
56
+ line-height:30px;
57
+ padding-bottom:20px;
58
+ }
59
+ .space-pad {
60
+ padding-bottom:50px;
61
+ }
62
+ .for-full-back {
63
+ /* IE 8 */
64
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
65
+
66
+ /* IE 5-7 */
67
+ filter: alpha(opacity=90);
68
+
69
+ /* Netscape */
70
+ -moz-opacity: 0.9;
71
+
72
+ /* Safari 1.x */
73
+ -khtml-opacity: 0.9;
74
+
75
+ /* Good browsers */
76
+ opacity: 0.9;
77
  }
78
+ section {
79
+ padding-top:30px;
80
+ padding-bottom:40px;
81
+ }
82
+
83
+ /*=======================================
84
+ COLOR CODES
85
+ ==================================================*/
86
+ .color-white {
87
+ background-color:#fff!important;
88
+ }
89
+
90
+ .color-light {
91
+ background-color:#F8F8F8!important;
92
+ }
93
+ .color-blue {
94
+ color: #395b74;
95
+ }
96
+ /*=======================================
97
+ HEADER STYLES
98
+ ==================================================*/
99
+ #home {
100
+ padding:20px 40px 130px 40px;
101
+ }
102
+ .head-main {
103
+ font-size:120px !important;
104
+ font-weight:900!important;
105
+ color:#585858!important;
106
+ padding:200px 20px 20px 20px;
107
+ }
108
+
109
+ /*=======================================
110
+ NAVIGATION STYLES
111
+ ==================================================*/
112
+
113
 
114
+ nav {
115
+ position: absolute;
116
+ width: 100%;
117
+ background: #fff;
118
+ z-index:99;
119
+ }
120
+ .fixed {
121
+ position: fixed;
122
+ top: 0;
123
+ min-height: 50px;
124
+ z-index: 99;
125
+ }
126
+
127
+ .navbar-inverse {
128
+ background-color: #525252;
129
+ border-color: #4B4A4A;
130
+ }
131
+
132
+ /*=======================================
133
+ ABOUT STYLES
134
+ ==================================================*/
135
+
136
+ .about-div {
137
+ width: 100%;
138
+ min-height: 100px;
139
+ background-color: rgba(209, 209, 209, 0.24);
140
+ box-shadow: none;
141
+ border: 0;
142
+ padding: 50px 20px 30px 20px;
143
+ margin-bottom:20px;
144
+ }
145
+ /*=======================================
146
+ FREE TEXT STYLES
147
+ ==================================================*/
148
+ .free-div {
149
+ width: 100%;
150
+ min-height: 100px;
151
+ background-color: rgba(209, 209, 209, 0.24);
152
+ box-shadow: none;
153
+ border: 0;
154
+ padding: 50px 20px 30px 20px;
155
+ margin-bottom:20px;
156
  }
157
 
158
+ /*=======================================
159
+ CONTACT STYLES
160
+ ==================================================*/
161
+ .contact-cls {
162
+ font-size:20px;
163
+ line-height:40px;
164
  }
165
+ /*=======================================
166
+ FOOTER STYLES
167
+ ==================================================*/
168
+
169
+ #footer {
170
+ background-color:#373737;
171
+ color:#fff;
172
+ text-align:right;
173
+ bottom: 0px;
174
+ position:fixed;
175
+ width: 100%;
176
+ left: 0px;
177
+ }
178
+