index.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .mimerenderer-certificate > .certificate {
  6. background-color: #07618b;
  7. border-radius: 20px 20px 20px 20px;
  8. box-shadow: 0px 5px 10px 0px;
  9. height: 250px;
  10. margin-left: 35%;
  11. margin-top: 10%;
  12. position: relative;
  13. width: 350px;
  14. }
  15. .mimerenderer-certificate > .certificate > .paper {
  16. background: #e0e0e0;
  17. border-radius: 5px 5px 5px 5px;
  18. height: 200px;
  19. left: 25px;
  20. position: absolute;
  21. top: 25px;
  22. width: 300px;
  23. }
  24. .mimerenderer-certificate > .certificate > .paper > .title {
  25. background: #e0e0e0;
  26. font-weight: bold;
  27. height: 30px;
  28. margin-top: 20px;
  29. text-align: center;
  30. z-index: 999;
  31. }
  32. .mimerenderer-certificate > .certificate > .paper > .text {
  33. margin-top: 20px;
  34. padding: 0px;
  35. text-align: center;
  36. z-index: 200;
  37. }
  38. .mimerenderer-certificate > .certificate > .medal {
  39. background: #c9992e;
  40. border-radius: 50%;
  41. font-size: 2em;
  42. height: 20px;
  43. left: 30px;
  44. padding: 10px 10px 10px 10px;
  45. position: absolute;
  46. top: 30px;
  47. width: 20px;
  48. z-index: 30;
  49. }
  50. .mimerenderer-certificate > .certificate > .ribbon {
  51. background-color: #9bdbf6;
  52. border-right: 1px solid white;
  53. height: 40px;
  54. left: 43px;
  55. position: absolute;
  56. top: 38px;
  57. width: 15px;
  58. z-index: 1;
  59. }
  60. .mimerenderer-certificate > .certificate > .ribbon1 {
  61. transform: rotate(30deg);
  62. }
  63. .mimerenderer-certificate > .certificate > .ribbon2 {
  64. transform: rotate(150deg);
  65. }