Advertisement
Guest User

index

a guest
Jun 21st, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.96 KB | None | 0 0
  1. body {
  2.   font-family: "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji",
  3.     "Segoe UI Emoji", "Segoe UI Symbol";
  4.   font-size: 14px;
  5.   line-height: 1.5;
  6.   color: #24292e;
  7.   background-color: #fff;
  8.   margin: 2em;
  9. }
  10.  
  11. a {
  12.   color: orange;
  13.   background-color: transparent;
  14.   text-decoration: none;
  15. }
  16.  
  17. a:visited {
  18.   color: red;
  19.   background-color: transparent;
  20.   text-decoration: none;
  21. }
  22.  
  23. a:hover {
  24.   color: red;
  25.   background-color: transparent;
  26.   text-decoration: underline;
  27. }
  28.  
  29. a:active {
  30.   color: orange;
  31.   background-color: transparent;
  32.   text-decoration: underline;
  33. }
  34.  
  35. .about_me {
  36. }
  37.  
  38. .about_me p {
  39.   font-family: Arial;
  40. }
  41.  
  42. .lab_list {
  43. }
  44.  
  45. .lab_list a {
  46.   text-decoration: none;
  47. }
  48.  
  49. .lab_list ol {
  50.   list-style-type: decimal-leading-zero;
  51. }
  52.  
  53. .profile_icon {
  54. }
  55.  
  56. .profile_icon img {
  57.   /*border: 1px solid rgba(0,0,0,1);
  58.     padding: 5px;*/
  59.   border-radius: 50%;
  60.   max-width: 100%;
  61.   width: auto/9;
  62.   height: auto;
  63.   /*filter: drop-shadow(0px 0px 10px);
  64.     float: left;
  65.     margin-right: 1em;*/
  66. }
  67.  
  68. .profile_icon img:hover {
  69. }
  70.  
  71. .profile_icon a {
  72.   color: white;
  73.   background-color: transparent;
  74.   text-decoration: none;
  75. }
  76.  
  77. .profile_icon a:hover {
  78.   color: lightgrey;
  79.   background-color: transparent;
  80.   text-decoration: none;
  81. }
  82.  
  83. .profile_name {
  84.   /*font-style: italic;
  85.     color: blue;
  86.     text-shadow: 1px 1px 2px black, 0 0 25px white, 0 0 5px green;*/
  87. }
  88.  
  89. .profile_name h1 {
  90.   font-family: Arial;
  91.   text-align: center;
  92.   font-size: 1.67em;
  93.   line-height: 0px;
  94. }
  95.  
  96. .web_list {
  97. }
  98.  
  99. .web_list a {
  100.   text-decoration: none;
  101. }
  102.  
  103. .web_list ol {
  104.   list-style-type: decimal-leading-zero;
  105. }
  106.  
  107. .column {
  108.   float: left;
  109.   width: 50%;
  110. }
  111.  
  112. /* Clear floats after the columns */
  113. .row:after {
  114.   content: "";
  115.   display: table;
  116.   clear: both;
  117. }
  118.  
  119. .profile_area {
  120.   border: 1.5px solid lightgrey;
  121. }
  122.  
  123. .column .profile_area {
  124.   width: 33%;
  125.   padding: 5px;
  126.   column-width:  33%;
  127. }
  128.  
  129. .column .about_me {
  130. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement