A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.0KB

  1. .row.userInfo {
  2. position: relative;
  3. height: 45px;
  4. padding: 0 !important;
  5. overflow: hidden;
  6. color: #aaa;
  7. }
  8. .row.userInfo .userBackground {
  9. position: absolute;
  10. top: 0;
  11. left: 0;
  12. right: 0;
  13. height: 100%;
  14. overflow: hidden;
  15. background: #444;
  16. z-index: 1;
  17. }
  18. .row.userInfo .userBackground img {
  19. width: 100%;
  20. height: auto;
  21. margin-top: -40%;
  22. opacity: 0.35;
  23. filter: blur(5px);
  24. filter: Alpha(Opacity=35, Style=0), Blur(Add=true, Dirrection=0, Strength=20);
  25. }
  26. .row.userInfo .userForeground {
  27. position: absolute;
  28. top: 0;
  29. left: 0;
  30. right: 0;
  31. z-index: 5;
  32. }
  33. .row.userInfo .userForeground img.avatar {
  34. float: left;
  35. min-height: 32px;
  36. max-height: 32px;
  37. margin: 6px 15px;
  38. margin-right: 10px;
  39. }
  40. .row.userInfo .userForeground .username {
  41. float: left;
  42. margin: 12px 15px 12px 0;
  43. color: white;
  44. text-decoration: none;
  45. }
  46. .row.userInfo .userForeground .link {
  47. float: right;
  48. margin: 12px 15px 12px 0;
  49. color: white;
  50. text-decoration: none;
  51. }