project.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /* Common elements */
  2. span.version_type{
  3. padding: 0.05em;
  4. border 0.1em solid #444444;
  5. border-radius: 0.2em;
  6. font-size: 85%;
  7. font-family: monospace;
  8. font-weight: bold;
  9. }
  10. /* Projects main page */
  11. div#right_column div#advanced_search{
  12. margin: 0.6em 0.1em 0.5em 0.1em;
  13. transition: all .3s ease-in-out;
  14. overflow: hidden;
  15. height: 0;
  16. }
  17. /* Project view page */
  18. div#content{
  19. display: table;
  20. }
  21. div#content-row{
  22. display: table-row;
  23. }
  24. div.content_cell{
  25. display: table-cell;
  26. padding: 1em;
  27. vertical-align: top;
  28. }
  29. div#content_cell_main{
  30. width: 80%;
  31. }
  32. div#content_cell_right{
  33. width: 20%;
  34. }
  35. div#main_column div#image_reel{
  36. text-align: center;
  37. width: 80%;
  38. margin: 1em auto 1em auto;
  39. border: 0.3em solid #000000;
  40. border-radius: 0.3em;
  41. padding: 0.5em;
  42. background-color: #556655;
  43. overflow-x: auto;
  44. }
  45. div#main_column div#image_reel table{
  46. margin: 0 auto 0 auto;
  47. }
  48. div#main_column div#image_reel img{
  49. display: inline-block;
  50. border: 0.1em solid #000000;
  51. border-radius: 0.1em;
  52. background-color: #000000;
  53. vertical-align: middle;
  54. max-height: 6em;
  55. max-width: 6em;
  56. }
  57. div#main_column div.iframe_container{
  58. width: 100%;
  59. text-align: center;
  60. }
  61. div#main_column iframe.project_embed{
  62. background-color: #ffffff;
  63. border-radius: 0.8em;
  64. border: 0.1em solid #110022;
  65. max-width: 90%;
  66. max-height: 70em;
  67. }
  68. div#right_column{
  69. transition: all .3s ease-in-out;
  70. }
  71. div#right_column div.url{
  72. vertical-align: middle;
  73. font-size: 70%;
  74. margin-bottom: 0.3em;
  75. }
  76. div#right_column div.url img{
  77. width: 2em;
  78. height: 2em;
  79. vertical-align: middle;
  80. }
  81. div#right_column img#img_license{
  82. max-height: 2.3em;
  83. text-align: center;
  84. }
  85. div#license{
  86. display: none;
  87. opacity: 0;
  88. position: fixed;
  89. transition: opacity .4s ease-in-out;
  90. top: 3em;
  91. left: 5em;
  92. right: 5em;
  93. bottom: 2em;
  94. }
  95. div#license h3 img.pointer{ /* Close icon*/
  96. float: right;
  97. height: 0.5em;
  98. width: 0.5em;
  99. margin-right: 1.2em;
  100. margin-top: 0.2em;
  101. }
  102. div#license div.entry{
  103. height: 30%;
  104. margin: 0 0.5em 0.5em 0.5em;
  105. overflow-y: scroll;
  106. }
  107. div#license div.entry h4{
  108. margin: 0;
  109. }
  110. div#license div.entry div.license_text{
  111. margin: 0;
  112. }