1
0

sample.css.txt 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828
  1. html {
  2. background-color: #e2e2e2;
  3. margin: 0;
  4. padding: 0;
  5. }
  6. body {
  7. background-color: #fff;
  8. border-top: solid 10px #000;
  9. color: #333;
  10. font-size: .85em;
  11. font-family: "Segoe UI","HelveticaNeue-Light", sans-serif;
  12. margin: 0;
  13. padding: 0;
  14. }
  15. a:link, a:visited,
  16. a:active, a:hover {
  17. color: #333;
  18. outline: none;
  19. padding-left: 0;
  20. padding-right: 3px;
  21. text-decoration: none;
  22. }
  23. a:hover {
  24. background-color: #c7d1d6;
  25. }
  26. header, footer, hgroup
  27. nav, section {
  28. display: block;
  29. }
  30. .float-left {
  31. float: left;
  32. }
  33. .float-right {
  34. float: right;
  35. }
  36. .highlight {
  37. /* background-color: #a6dbed;
  38. padding-left: 5px;
  39. padding-right: 5px;*/
  40. }
  41. .clear-fix:after {
  42. content: ".";
  43. clear: both;
  44. display: block;
  45. height: 0;
  46. visibility: hidden;
  47. }
  48. h1, h2, h3,
  49. h4, h5, h6 {
  50. color: #000;
  51. margin-bottom: 0;
  52. padding-bottom: 0;
  53. }
  54. h1 {
  55. font-size: 2em;
  56. }
  57. h2 {
  58. font-size: 1.75em;
  59. }
  60. h3 {
  61. font-size: 1.2em;
  62. }
  63. h4 {
  64. font-size: 1.1em;
  65. }
  66. h5, h6 {
  67. font-size: 1em;
  68. }
  69. .tile {
  70. /* 2px solid #7ac0da; */
  71. border: 0;
  72. float: left;
  73. width: 200px;
  74. height: 325px;
  75. padding: 5px;
  76. margin-right: 5px;
  77. margin-bottom: 20px;
  78. margin-top: 20px;
  79. -webkit-perspective: 0;
  80. -webkit-transform-style: preserve-3d;
  81. -webkit-transition: -webkit-transform 0.2s;
  82. -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.3);
  83. background-position: center center;
  84. background-repeat: no-repeat;
  85. background-color: #fff;
  86. }
  87. .tile-item {
  88. /* 2px solid #7ac0da; */
  89. border-color: inherit;
  90. float: left;
  91. width: 50px;
  92. height: 70px;
  93. margin-right: 20px;
  94. margin-bottom: 20px;
  95. margin-top: 20px;
  96. background-image: url('../Images/documents.png');
  97. background-repeat: no-repeat;
  98. }
  99. .tile-wrapper {
  100. width: 100%;
  101. font-family: "Segoe UI" , Tahoma, Geneva, Verdana, sans-serif;
  102. line-height: 21px;
  103. font-size: 14px;
  104. }
  105. a.blue-box {
  106. font-size: 28px;
  107. height: 100px;
  108. display: block;
  109. border-style: solid;
  110. border-width: 1px 1px 4px 1px;
  111. border-color: #C0C0C0 #C0C0C0 #8ABAE4 #C0C0C0;
  112. padding-top: 15px;
  113. padding-left: 15px;
  114. }
  115. a.blue-box:hover {
  116. border: 4px solid #8ABAE4;
  117. padding-top: 12px;
  118. padding-left: 12px;
  119. background-color: #FFFFFF;
  120. }
  121. a.green-box {
  122. font-size: 28px;
  123. height: 100px;
  124. display: block;
  125. border-style: solid;
  126. border-width: 1px 1px 4px 1px;
  127. border-color: #C0C0C0 #C0C0C0 #9CCF42 #C0C0C0;
  128. padding-top: 15px;
  129. padding-left: 15px;
  130. }
  131. a.green-box:hover {
  132. border: 4px solid #9CCF42;
  133. padding-top: 12px;
  134. padding-left: 12px;
  135. background-color: #FFFFFF;
  136. }
  137. a.green-box2 {
  138. font-size: 14px;
  139. height: 48px;
  140. width: 48px;
  141. display: block; /* border-color: #C0C0C0; */
  142. padding-top: 6px;
  143. font-weight: bold;
  144. }
  145. a.green-box2:hover {
  146. border: solid #8ABAE4;
  147. padding-top: 0px;
  148. padding-left: 0px;
  149. background-image: url('../Images/documents.png');
  150. background-color: #EFEFEF;
  151. }
  152. a.yellow-box {
  153. font-size: 28px;
  154. height: 100px;
  155. display: block;
  156. border-style: solid;
  157. border-width: 1px 1px 4px 1px;
  158. border-color: #C0C0C0 #C0C0C0 #DECF6B #C0C0C0;
  159. padding-top: 15px;
  160. padding-left: 15px;
  161. }
  162. a.yellow-box:hover {
  163. border: 4px solid #DECF6B;
  164. padding-top: 12px;
  165. padding-left: 12px;
  166. background-color: #FFFFFF;
  167. }
  168. a.red-box {
  169. font-size: 28px;
  170. height: 100px;
  171. display: block;
  172. border-style: solid;
  173. border-width: 1px 1px 4px 1px;
  174. border-color: #C0C0C0 #C0C0C0 #F79E84 #C0C0C0;
  175. padding-top: 15px;
  176. padding-left: 15px;
  177. }
  178. a.red-box:hover {
  179. border: 4px solid #F79E84;
  180. padding-top: 12px;
  181. padding-left: 12px;
  182. background-color: #FFFFFF;
  183. }
  184. /* main layout
  185. ----------------------------------------------------------*/
  186. .content-wrapper {
  187. margin: 0 auto;
  188. max-width: 960px;
  189. }
  190. #body {
  191. background-color: #efeeef;
  192. clear: both;
  193. padding-bottom: 35px;
  194. }
  195. .main-content {
  196. background: url("../images/accent.png") no-repeat;
  197. padding-left: 10px;
  198. padding-top: 30px;
  199. }
  200. .featured + .main-content {
  201. background: url("../images/heroaccent.png") no-repeat;
  202. }
  203. footer {
  204. clear: both;
  205. background-color: #e2e2e2;
  206. font-size: .8em;
  207. height: 100px;
  208. }
  209. /* site title
  210. ----------------------------------------------------------*/
  211. .site-title {
  212. color: #0066CC; /* font-family: Rockwell, Consolas, "Courier New", Courier, monospace; */
  213. font-size: 3.3em;
  214. margin-top: 40px;
  215. margin-bottom: 0;
  216. }
  217. .site-title a, .site-title a:hover, .site-title a:active {
  218. background: none;
  219. color: #0066CC;
  220. outline: none;
  221. text-decoration: none;
  222. }
  223. /* login
  224. ----------------------------------------------------------*/
  225. #login {
  226. display: block;
  227. font-size: .85em;
  228. margin-top: 20px;
  229. text-align: right;
  230. }
  231. #login a {
  232. background-color: #d3dce0;
  233. margin-left: 10px;
  234. margin-right: 3px;
  235. padding: 2px 3px;
  236. text-decoration: none;
  237. }
  238. #login a.username {
  239. background: none;
  240. margin-left: 0px;
  241. text-decoration: underline;
  242. }
  243. #login li {
  244. display: inline;
  245. list-style: none;
  246. }
  247. /* menu
  248. ----------------------------------------------------------*/
  249. ul#menu {
  250. font-size: 1.3em;
  251. font-weight: 600;
  252. margin: 0;
  253. text-align: right;
  254. text-decoration: none;
  255. }
  256. ul#menu li {
  257. display: inline;
  258. list-style: none;
  259. padding-left: 15px;
  260. }
  261. ul#menu li a {
  262. background: none;
  263. color: #999;
  264. text-decoration: none;
  265. }
  266. ul#menu li a:hover {
  267. color: #333;
  268. text-decoration: none;
  269. }
  270. /* page elements
  271. ----------------------------------------------------------*/
  272. /* featured */
  273. .featured {
  274. background-color: #fff;
  275. }
  276. .featured .content-wrapper {
  277. /*background-color: #7ac0da;
  278. background-image: -ms-linear-gradient(left, #7AC0DA 0%, #A4D4E6 100%);
  279. background-image: -o-linear-gradient(left, #7AC0DA 0%, #A4D4E6 100%);
  280. background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #7AC0DA), color-stop(1, #A4D4E6));
  281. background-image: -webkit-linear-gradient(left, #7AC0DA 0%, #A4D4E6 100%);
  282. background-image: linear-gradient(left, #7AC0DA 0%, #A4D4E6 100%);
  283. color: #3e5667;
  284. */
  285. padding: 0px 40px 30px 40px;
  286. }
  287. .featured hgroup.title h1, .featured hgroup.title h2 {
  288. /* color: #fff;
  289. */
  290. }
  291. .featured p {
  292. font-size: 1.1em;
  293. }
  294. /* page titles */
  295. hgroup.title {
  296. margin-bottom: 10px;
  297. }
  298. hgroup.title h1, hgroup.title h2 {
  299. display: inline;
  300. }
  301. hgroup.title h2 {
  302. font-weight: normal;
  303. }
  304. /* releases */
  305. .milestone {
  306. color: #fff;
  307. background-color: #8ABAE4;
  308. font-weight: normal;
  309. padding: 10px 10px 10px 10px;
  310. margin: 0 0 0 0;
  311. }
  312. .milestone .primary {
  313. font-size: 1.75em;
  314. }
  315. .milestone .secondary {
  316. font-size: 1.2em;
  317. font-weight: normal;
  318. /* padding: 5px 5px 5px 10px;*/
  319. }
  320. /* features */
  321. section.feature {
  322. width: 200px;
  323. float: left;
  324. padding: 10px;
  325. }
  326. /* ordered list */
  327. ol.round {
  328. list-style-type: none;
  329. padding-left: 0;
  330. }
  331. ol.round li {
  332. margin: 25px 0;
  333. padding-left: 45px;
  334. }
  335. ol.round li.one {
  336. background: url("../images/orderedlistOne.png") no-repeat;
  337. }
  338. ol.round li.two {
  339. background: url("../images/orderedlistTwo.png") no-repeat;
  340. }
  341. ol.round li.three {
  342. background: url("../images/orderedlistThree.png") no-repeat;
  343. }
  344. /* content */
  345. article {
  346. float: left;
  347. width: 70%;
  348. }
  349. aside {
  350. float: right;
  351. width: 25%;
  352. }
  353. aside ul {
  354. list-style: none;
  355. padding: 0;
  356. }
  357. aside ul li {
  358. background: url("../images/bullet.png") no-repeat 0 50%;
  359. padding: 2px 0 2px 20px;
  360. }
  361. .label {
  362. font-weight: 700;
  363. }
  364. /* login page */
  365. #loginForm {
  366. border-right: solid 2px #c8c8c8;
  367. float: left;
  368. width: 45%;
  369. }
  370. #loginForm .validation-error {
  371. display: block;
  372. margin-left: 15px;
  373. }
  374. #socialLoginForm {
  375. margin-left: 40px;
  376. float: left;
  377. width: 50%;
  378. }
  379. /* contact */
  380. .contact h3 {
  381. font-size: 1.2em;
  382. }
  383. .contact p {
  384. margin: 5px 0 0 10px;
  385. }
  386. .contact iframe {
  387. border: solid 1px #333;
  388. margin: 5px 0 0 10px;
  389. }
  390. /* forms */
  391. fieldset {
  392. border: none;
  393. margin: 0;
  394. padding: 0;
  395. }
  396. fieldset legend {
  397. display: none;
  398. }
  399. fieldset ol {
  400. padding: 0;
  401. list-style: none;
  402. }
  403. fieldset ol li {
  404. padding-bottom: 5px;
  405. }
  406. fieldset label {
  407. display: block;
  408. font-size: 1.2em;
  409. font-weight: 600;
  410. }
  411. fieldset label.checkbox {
  412. display: inline;
  413. }
  414. fieldset input[type="text"],
  415. fieldset input[type="password"] {
  416. border: 1px solid #e2e2e2;
  417. color: #333;
  418. font-size: 1.2em;
  419. margin: 5px 0 6px 0;
  420. padding: 5px;
  421. width: 300px;
  422. }
  423. fieldset input[type="text"]:focus,
  424. fieldset input[type="password"]:focus {
  425. border: 1px solid #7ac0da;
  426. }
  427. fieldset input[type="submit"] {
  428. background-color: #d3dce0;
  429. border: solid 1px #787878;
  430. cursor: pointer;
  431. font-size: 1.2em;
  432. font-weight: 600;
  433. padding: 7px;
  434. }
  435. /* ajax login/registration dialog */
  436. .modal-popup {
  437. font-size: 0.7em;
  438. }
  439. /* info and errors */
  440. .message-info {
  441. border: solid 1px;
  442. clear: both;
  443. padding: 10px 20px;
  444. }
  445. .message-error {
  446. clear: both;
  447. color: #e80c4d;
  448. font-size: 1.1em;
  449. font-weight: bold;
  450. margin: 20px 0 10px 0;
  451. }
  452. .message-success {
  453. color: #7ac0da;
  454. font-size: 1.3em;
  455. font-weight: bold;
  456. margin: 20px 0 10px 0;
  457. }
  458. .success {
  459. color: #7ac0da;
  460. }
  461. .error {
  462. color: #e80c4d;
  463. }
  464. /* styles for validation helpers */
  465. .field-validation-error {
  466. color: #e80c4d;
  467. font-weight: bold;
  468. }
  469. .field-validation-valid {
  470. display: none;
  471. }
  472. input[type="text"].input-validation-error,
  473. input[type="password"].input-validation-error {
  474. border: solid 1px #e80c4d;
  475. }
  476. .validation-summary-errors {
  477. color: #e80c4d;
  478. font-weight: bold;
  479. font-size: 1.1em;
  480. }
  481. .validation-summary-valid {
  482. display: none;
  483. }
  484. /* social */
  485. ul#social li {
  486. display: inline;
  487. list-style: none;
  488. }
  489. ul#social li a {
  490. color: #999;
  491. text-decoration: none;
  492. }
  493. a.facebook, a.twitter {
  494. display: block;
  495. float: left;
  496. height: 24px;
  497. padding-left: 17px;
  498. text-indent: -9999px;
  499. width: 16px;
  500. }
  501. a.facebook {
  502. background: url("../images/facebook.png") no-repeat;
  503. }
  504. a.twitter {
  505. background: url("../images/twitter.png") no-repeat;
  506. }
  507. /********************
  508. * Mobile Styles *
  509. ********************/
  510. @media only screen and (max-width: 850px) {
  511. /* header
  512. ----------------------------------------------------------*/
  513. header .float-left,
  514. header .float-right {
  515. float: none;
  516. }
  517. /* logo */
  518. header .site-title {
  519. /*margin: 0; */
  520. /*margin: 10px;*/
  521. text-align: left;
  522. padding-left: 0;
  523. }
  524. /* login */
  525. #login {
  526. font-size: .85em;
  527. margin-top: 0;
  528. text-align: center;
  529. }
  530. #login ul {
  531. margin: 5px 0;
  532. padding: 0;
  533. }
  534. #login li {
  535. display: inline;
  536. list-style: none;
  537. margin: 0;
  538. padding:0;
  539. }
  540. #login a {
  541. background: none;
  542. color: #999;
  543. font-weight: 600;
  544. margin: 2px;
  545. padding: 0;
  546. }
  547. #login a:hover {
  548. color: #333;
  549. }
  550. /* menu */
  551. nav {
  552. margin-bottom: 5px;
  553. }
  554. ul#menu {
  555. margin: 0;
  556. padding:0;
  557. text-align: center;
  558. }
  559. ul#menu li {
  560. margin: 0;
  561. padding: 0;
  562. }
  563. /* main layout
  564. ----------------------------------------------------------*/
  565. .main-content,
  566. .featured + .main-content {
  567. background-position: 10px 0;
  568. }
  569. .content-wrapper {
  570. padding-right: 10px;
  571. padding-left: 10px;
  572. }
  573. .featured .content-wrapper {
  574. padding: 10px;
  575. }
  576. /* page content */
  577. article, aside {
  578. float: none;
  579. width: 100%;
  580. }
  581. /* ordered list */
  582. ol.round {
  583. list-style-type: none;
  584. padding-left: 0;
  585. }
  586. ol.round li {
  587. padding-left: 10px;
  588. margin: 25px 0;
  589. }
  590. ol.round li.one,
  591. ol.round li.two,
  592. ol.round li.three {
  593. background: none;
  594. }
  595. /* features */
  596. section.feature {
  597. float: none;
  598. padding: 10px;
  599. width: auto;
  600. }
  601. section.feature img {
  602. color: #999;
  603. content: attr(alt);
  604. font-size: 1.5em;
  605. font-weight: 600;
  606. }
  607. /* forms */
  608. fieldset input[type="text"],
  609. fieldset input[type="password"] {
  610. width: 90%;
  611. }
  612. /* login page */
  613. #loginForm {
  614. border-right: none;
  615. float: none;
  616. width: auto;
  617. }
  618. #loginForm .validation-error {
  619. display: block;
  620. margin-left: 15px;
  621. }
  622. #socialLoginForm {
  623. margin-left: 0;
  624. float: none;
  625. width: auto;
  626. }
  627. /* footer
  628. ----------------------------------------------------------*/
  629. footer .float-left,
  630. footer .float-right {
  631. float: none;
  632. }
  633. footer {
  634. text-align: center;
  635. height: auto;
  636. padding: 10px 0;
  637. }
  638. footer p {
  639. margin: 0;
  640. }
  641. ul#social {
  642. padding:0;
  643. margin: 0;
  644. }
  645. a.facebook, a.twitter {
  646. background: none;
  647. display: inline;
  648. float: none;
  649. height: auto;
  650. padding-left: 0;
  651. text-indent: 0;
  652. width: auto;
  653. }
  654. }
  655. .subsite {
  656. color: #444;
  657. }
  658. h3 {
  659. font-weight: normal;
  660. font-size: 24px;
  661. color: #444;
  662. margin-bottom: 20px;
  663. }
  664. .tiles {
  665. padding-bottom: 20px;
  666. background-color: #e3e3e3;
  667. }
  668. #editor {
  669. margin: 0 auto;
  670. height: 500px;
  671. border: 1px solid #ccc;
  672. }
  673. .monaco-editor.monaco, .monaco-editor.vs, .monaco-editor.eclipse {
  674. background: #F9F9F9;
  675. }
  676. .monaco-editor.monaco .monaco-editor-background, .monaco-editor.vs .monaco-editor-background, .monaco-editor.eclipse .monaco-editor-background {
  677. background: #F9F9F9;
  678. }