app.details.new.less 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. .fadeOutLeftBig {
  2. -webkit-animation-name: fadeOutLeftBig;
  3. animation-name: fadeOutLeftBig;
  4. }
  5. .fadeInRightBig {
  6. -webkit-animation-name: fadeInRightBig;
  7. animation-name: fadeInRightBig;
  8. }
  9. .fade-in-right-big.ng-enter {
  10. -webkit-animation: fadeInRightBig 0.5s;
  11. animation: fadeInRightBig 0.5s;
  12. }
  13. .fade-in-right-big.ng-leave {
  14. -webkit-animation: fadeOutLeftBig 1s;
  15. animation: fadeOutLeftBig 1s;
  16. }
  17. #details{
  18. width: 400px;
  19. height: 700px;
  20. margin: auto;
  21. overflow: hidden;
  22. text-align: center;
  23. #userHead{
  24. height: 230px;
  25. background: -o-linear-gradient(#96CEDF, #5EB0D2); /* Opera 11.1 - 12.0 */
  26. background: linear-gradient(#96CEDF, #5EB0D2); /* 标准的语法(必须放在最后) */
  27. box-shadow: 0px 5px 5px #ccc;
  28. overflow: hidden;
  29. #icoImg {
  30. width: 110px;
  31. height: 110px;
  32. margin: 20px auto 15px;
  33. border-radius: 100%;
  34. border:4px solid #eee;
  35. background: #96CEDF;
  36. >img {
  37. border-radius: 100%;
  38. width: 100%;
  39. height: 100%;
  40. }
  41. }
  42. .displayname {
  43. color: #fff;
  44. font-size: 18px;
  45. margin-left:5px;
  46. font-family: "微软雅黑","宋体";
  47. >input {
  48. width: 80%;
  49. margin-left: -4px;
  50. text-align: center;
  51. text-shadow:0px 0px 2px #999;
  52. border: none;
  53. outline: none;
  54. background: -o-linear-gradient(#72BBD7, #6CB8D5);
  55. background: linear-gradient(#72BBD7, #6CB8D5);
  56. }
  57. }
  58. #watch {
  59. text-align: left;
  60. font-family: "楷体_GB2312:KaiTi_GB2312","宋体";
  61. background: #7FC1D7;
  62. color: #fff;
  63. margin-top: 15px;
  64. font-size: 12px;
  65. padding: 8px 10px;
  66. text-shadow:0px 0px 2px #999;
  67. white-space: nowrap; /* 自适应宽度,不换行*/
  68. >input {
  69. margin-left:-7px;
  70. border: none;
  71. outline: none;
  72. background: #7FC1D7;
  73. width: 85%;
  74. white-space: nowrap;
  75. overflow: hidden;
  76. text-overflow: ellipsis;
  77. text-shadow:0px 0px 2px #999;
  78. }
  79. }
  80. }
  81. #userInfo {
  82. height: 430px;
  83. margin-top:4px;
  84. background: #E8F4F8;
  85. #sInfo {
  86. float:right;
  87. margin: 10px 2px;
  88. width: 50px;
  89. height: 30px;
  90. >a {
  91. padding-left:14px;
  92. font-size: 24px;
  93. color: #3EB0D2;
  94. text-decoration:none;
  95. &:hover {
  96. color:#5EB0D2;
  97. }
  98. }
  99. }
  100. #sCode {
  101. float:right;
  102. margin: 9px 2px;
  103. width: 50px;
  104. height: 30px;
  105. >a {
  106. padding-left:12px;
  107. font-size: 24px;
  108. color: #3EB0D2;
  109. text-decoration:none;
  110. &:hover {
  111. color:#5EB0D2;
  112. }
  113. }
  114. }
  115. .navdown {
  116. display: none;
  117. }
  118. #content {
  119. position: relative;
  120. >ul {
  121. position: absolute;
  122. list-style: none;
  123. margin: 0px 30px 0px -10px;
  124. #head {
  125. width: 100px;
  126. padding-top:20px;
  127. padding-bottom: 30px;
  128. margin-left:-10px;
  129. text-align: left;
  130. font-weight: bold;
  131. font-size: 16px;
  132. }
  133. >li {
  134. width: 340px;
  135. font-family: "微软雅黑","宋体";
  136. padding-bottom:19px;
  137. text-align: left;
  138. font-size: 12px;
  139. color: #444;
  140. white-space: nowrap; /* 自适应宽度,不换行*/
  141. >input.lr {
  142. margin-left: 40px;
  143. border: none;
  144. outline: none;
  145. background: #E8F4F8;
  146. width: 73%;
  147. white-space: nowrap;
  148. overflow: hidden;
  149. text-overflow: ellipsis;
  150. }
  151. }
  152. }
  153. }
  154. #userCode {
  155. position: relative;
  156. top: 90px;
  157. left: 90px;
  158. #code {
  159. position: absolute;
  160. width: 220px;
  161. height: 216px;
  162. border: 8px solid #fff;
  163. box-shadow:0px 0px 1px #999;
  164. }
  165. }
  166. }
  167. }