main.css 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481
  1. @import url("//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800%7CRaleway:100,300,600,700,800");
  2. /* Scaffolding
  3. /* ------------------------- */
  4. html {
  5. position: relative;
  6. min-height: 100%;
  7. }
  8. body {
  9. background-color: #f4f4f4;;
  10. margin-bottom: 44px;
  11. line-height: 1.57142857;
  12. font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  13. }
  14. h1, h2, h3, h4, h5, h6 {
  15. font-weight: 600;
  16. }
  17. a {
  18. color: #668c6d;
  19. }
  20. a:hover {
  21. text-decoration: none;
  22. }
  23. footer {
  24. position: absolute;
  25. width: 100%;
  26. padding: 10px 30px;
  27. bottom: 0px;
  28. background-color: #fff;
  29. border-top: 1px solid #e0e0e0;
  30. }
  31. .footer-icons{
  32. padding-top: 10px;
  33. margin-right: 7.5px;
  34. margin-left: 7.5px;
  35. font-size: 25pt;
  36. text-align: center;
  37. color: #555555 !important;
  38. }
  39. .login-container {
  40. max-width: 555px;
  41. }
  42. /* Alerts
  43. /* ------------------------- */
  44. .alert {
  45. border-width: 0 0 0 3px;
  46. }
  47. .alert-info {
  48. border-color: #31708f;
  49. }
  50. .alert-success {
  51. color: #fff;
  52. background-color: #29b35b;
  53. border-color: #1d8141;
  54. }
  55. .alert-danger {
  56. color: #b61b17;
  57. background-color: #ffcdd2;
  58. border-color: #b61b17;
  59. }
  60. /* Navbar
  61. /* ------------------------- */
  62. .navbar-default {
  63. background-color: #fff;
  64. border-color: #e0e0e0;
  65. }
  66. .navbar-default .navbar-nav {
  67. color: #757575;
  68. }
  69. .navbar-default .navbar-nav > li > a {
  70. color: #262626;
  71. border-bottom: 3px solid transparent;
  72. padding-top: 17.5px;
  73. padding-bottom: 14.5px;
  74. transition: all 0.25s;
  75. }
  76. .navbar-default .navbar-nav > li > a:hover {
  77. background-color: transparent;;
  78. border-bottom-color: #bdbdbd;
  79. }
  80. .navbar-default .navbar-nav > li > a.navbar-avatar {
  81. padding-top: 13px;
  82. padding-bottom: 10px;
  83. }
  84. .navbar-default .navbar-nav > li > a.navbar-avatar img {
  85. border-radius: 50%;
  86. width: 30px;
  87. height: 30px;
  88. }
  89. .navbar-default .navbar-nav > li.active > a {
  90. border-bottom-color: #7c916f;
  91. background-color: transparent;
  92. color: #262626;
  93. }
  94. /* Panels
  95. /* ------------------------- */
  96. .panel {
  97. border: solid 1px rgba(160, 160, 160, 0.3);
  98. box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  99. }
  100. .panel-heading {
  101. padding: 20px 30px;
  102. }
  103. .panel-heading + .panel-body {
  104. padding-top: 0;
  105. }
  106. .panel-body {
  107. padding: 30px;
  108. }
  109. .panel-body h3 {
  110. margin-top: 0;
  111. }
  112. .panel-title {
  113. font-size: 18px;
  114. color: #424242;
  115. }
  116. /* Buttons
  117. /* ------------------------- */
  118. .btn-toolbar > .btn {
  119. float: none;
  120. margin-bottom: 5px;
  121. }
  122. .btn {
  123. font-weight: 600;
  124. border-radius: 3px;
  125. }
  126. .btn:focus {
  127. outline: 0 !important;
  128. }
  129. /*
  130. .btn-default {
  131. border-color: #ccc;
  132. background: #f5f5f5 linear-gradient(to bottom, #fff, #f5f5f5);
  133. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), inset 0 -1px 4px rgba(151, 159, 175, 0.2);
  134. }
  135. .btn-default:active {
  136. background: #e6e6e6 linear-gradient(to bottom, #f0f0f0, #e6e6e6);
  137. }
  138. .btn-success {
  139. border-color: #208a46;
  140. background: #29b35b linear-gradient(to bottom, #2ec866, #29b35b);
  141. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 4px rgba(32, 138, 70, 0.3);
  142. }
  143. .btn-success:active {
  144. background: #239a4e linear-gradient(to bottom, #28af59, #239a4e);
  145. }
  146. .btn-danger {
  147. border-color: #8c1512;
  148. background: #b61b17 linear-gradient(to bottom, #cc1e1a, #b61b17);
  149. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 4px rgba(140, 21, 18, 0.3);
  150. }
  151. .btn-danger:active {
  152. background: #9b1714 linear-gradient(to bottom, #b11a17, #9b1714);
  153. }*/
  154. .btn-facebook {
  155. color: #fff;
  156. border-color: #335190;
  157. background: #3b5998 linear-gradient(to bottom, #4263a9, #3b5998);
  158. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 4px rgba(59, 89, 152, 0.3);
  159. }
  160. .btn-facebook:hover,
  161. .btn-facebook:focus {
  162. color: #fff;
  163. }
  164. .btn-twitter {
  165. color: #fff;
  166. border-color: #009fdb;
  167. background: #00aced linear-gradient(to bottom, #05baff, #00aced);
  168. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 4px rgba(0, 172, 237, 0.3);
  169. }
  170. .btn-twitter:hover,
  171. .btn-twitter:focus {
  172. color: #fff;
  173. }
  174. .btn-google {
  175. color: #fff;
  176. border-color: #d54331;
  177. background: #dd4b39 linear-gradient(to bottom, #e05d4d, #dd4b39);
  178. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 4px rgba(221, 75, 57, 0.3);
  179. }
  180. .btn-google:hover,
  181. .btn-google:focus {
  182. color: #fff;
  183. }
  184. .btn-vk {
  185. color: #fff;
  186. border-color: #4f7192;
  187. background: #587ea3 linear-gradient(to bottom, #678aad, #587ea3);
  188. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 4px rgba(79, 113, 146, 0.3);
  189. }
  190. .btn-vk:hover,
  191. .btn-vk:focus {
  192. color: #fff;
  193. }
  194. .btn-github {
  195. color: #fff;
  196. border-color: #444;
  197. background: #545454 linear-gradient(to bottom, #616161, #545454);
  198. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 4px rgba(68, 68, 68, 0.3);
  199. }
  200. .btn-github:hover,
  201. .btn-github:focus {
  202. color: #fff;
  203. }
  204. /* Forms */
  205. /* ------------------------- */
  206. textarea {
  207. resize: none;
  208. }
  209. .form-control {
  210. height: auto;
  211. padding: 8px 12px;
  212. border: 2px solid #ebebeb;
  213. border-radius: 0;
  214. box-shadow: inset 0 1px 2px rgba(150, 160, 175, 0.1), inset 0 1px 15px rgba(150, 160, 175, 0.05);
  215. }
  216. .form-group > label {
  217. text-transform: uppercase;
  218. font-size: 13px;
  219. }
  220. .hr-title {
  221. height: auto;
  222. margin-top: 20px;
  223. border-top: 1px solid;
  224. color: #bbb;
  225. font-size: 16px;
  226. text-align: center;
  227. line-height: 20px;
  228. }
  229. .hr-title span {
  230. position: relative;
  231. padding: 2px 10px;
  232. top: -10px;
  233. background-color: #fff;
  234. border-radius: 2px;
  235. letter-spacing: 0.2em;
  236. text-transform: uppercase;
  237. }
  238. /*header*/
  239. .header {
  240. margin-top: -20px;
  241. margin-bottom: 30px;
  242. display: table;
  243. position: relative;
  244. width: 100%;
  245. height: 400px;
  246. background: url(/jenn-evelyn-ann-112980.jpg) no-repeat center scroll;
  247. -webkit-background-size: cover;
  248. -moz-background-size: cover;
  249. background-size: cover;
  250. -o-background-size: cover;
  251. }
  252. .header-text {
  253. display: table-cell;
  254. text-align: left;
  255. vertical-align: middle;
  256. margin-left: 800px;
  257. padding-left: 26.5%;
  258. padding-right: 25%;
  259. color: #fff;
  260. font-size: 22pt;
  261. }
  262. @media only screen
  263. and (max-width : 1200px) {
  264. .header-text {
  265. display: table-cell;
  266. text-align: left;
  267. vertical-align: middle;
  268. margin-left: 800px;
  269. padding-left: 100px;
  270. padding-right: 100px;
  271. color: #fff;
  272. }
  273. }
  274. @media only screen
  275. and (max-width : 750px) {
  276. .header-text {
  277. display: table-cell;
  278. text-align: left;
  279. vertical-align: middle;
  280. margin-left: 800px;
  281. padding-left: 40px;
  282. padding-right: 40px;
  283. color: #fff;
  284. }
  285. }
  286. .header-text h1 {
  287. margin: 0;
  288. padding-left: 90px;
  289. font-size: 4.5em;
  290. font-weight: 700;
  291. }
  292. .explore-profile_pic{
  293. width: 90px;
  294. border-radius: 100%;
  295. margin-right: 10px;
  296. }
  297. .div-btn-ver{
  298. text-align: right;
  299. }
  300. .explore{
  301. padding: 20px !important;
  302. }
  303. /*About page*/
  304. .about-img{
  305. width: 100%;
  306. height: auto;
  307. }
  308. .about-row{
  309. padding-top: 30px;
  310. }
  311. .about-div{
  312. text-align: center;
  313. }
  314. .about-text{
  315. font-size: 15pt;
  316. display: inline-block;
  317. vertical-align: middle;
  318. padding: 110px 5px;
  319. }
  320. @media only screen
  321. and (max-width: 1000px){
  322. .about-text{
  323. font-size: 15pt;
  324. display: inline-block;
  325. vertical-align: middle;
  326. padding: 8px 5px;
  327. }
  328. .about-img{
  329. width: 100%;
  330. height: auto;
  331. padding-top: 15px;
  332. }
  333. }
  334. @media only screen
  335. and (max-width: 1600px){
  336. .about-text{
  337. font-size: 15pt;
  338. display: inline-block;
  339. vertical-align: middle;
  340. padding: 0px 5px;
  341. }
  342. }
  343. .manifesto{
  344. margin-top: 60px;
  345. text-align: center;
  346. color: white;
  347. font-size: 15pt;
  348. text-shadow: 1px 1px 4px rgba(0,0,0,.6);
  349. padding-top: 40px;
  350. padding-bottom: 50px;
  351. padding-left: 15%;
  352. padding-right: 15%;
  353. background-image: url("/img/static/shane-rounce-236808.jpg");
  354. height: 50%;
  355. background-repeat: no-repeat;
  356. background-size: cover;
  357. }
  358. .manifesto > h1{
  359. color: white;
  360. }
  361. .about-resume{
  362. margin: 50px 5%;
  363. }
  364. .voluntariado-banner{
  365. margin-top: -20px;
  366. text-align: center;
  367. color: white;
  368. font-size: 15pt;
  369. text-shadow: 1px 1px 4px rgba(0,0,0,.6);
  370. padding-top: 100px;
  371. padding-bottom: 100px;
  372. padding-left: 15%;
  373. padding-right: 15%;
  374. background-image: url("/img/static/rebekah-howell-221666.jpg");
  375. height: 50%;
  376. background-repeat: no-repeat;
  377. background-size: cover;
  378. }
  379. .voluntariado-banner > h1{
  380. color: white;
  381. font-size: 30pt;
  382. }
  383. .divisor{
  384. margin-top: 10px;
  385. margin-bottom: 10px;
  386. text-align: center;
  387. color: #555555;
  388. font-size: 20pt;
  389. padding: 0px 15%;
  390. height: 100px;
  391. background-color: white;
  392. background-repeat: no-repeat;
  393. background-size: cover;
  394. }