| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- .fadeOutLeftBig {
- -webkit-animation-name: fadeOutLeftBig;
- animation-name: fadeOutLeftBig;
- }
- .fadeInRightBig {
- -webkit-animation-name: fadeInRightBig;
- animation-name: fadeInRightBig;
- }
- .fade-in-right-big.ng-enter {
- -webkit-animation: fadeInRightBig 0.5s;
- animation: fadeInRightBig 0.5s;
- }
- .fade-in-right-big.ng-leave {
- -webkit-animation: fadeOutLeftBig 1s;
- animation: fadeOutLeftBig 1s;
- }
- #details{
- width: 400px;
- height: 700px;
- margin: auto;
- overflow: hidden;
- text-align: center;
- #userHead{
- height: 230px;
- background: -o-linear-gradient(#96CEDF, #5EB0D2); /* Opera 11.1 - 12.0 */
- background: linear-gradient(#96CEDF, #5EB0D2); /* 标准的语法(必须放在最后) */
- box-shadow: 0px 5px 5px #ccc;
- overflow: hidden;
- #icoImg {
- width: 110px;
- height: 110px;
- margin: 20px auto 15px;
- border-radius: 100%;
- border:4px solid #eee;
- background: #96CEDF;
- >img {
- border-radius: 100%;
- width: 100%;
- height: 100%;
- }
- }
- .displayname {
- color: #fff;
- font-size: 18px;
- margin-left:5px;
- font-family: "微软雅黑","宋体";
- >input {
- width: 80%;
- margin-left: -4px;
- text-align: center;
- text-shadow:0px 0px 2px #999;
- border: none;
- outline: none;
- background: -o-linear-gradient(#72BBD7, #6CB8D5);
- background: linear-gradient(#72BBD7, #6CB8D5);
- }
- }
- #watch {
- text-align: left;
- font-family: "楷体_GB2312:KaiTi_GB2312","宋体";
- background: #7FC1D7;
- color: #fff;
- margin-top: 15px;
- font-size: 12px;
- padding: 8px 10px;
- text-shadow:0px 0px 2px #999;
- white-space: nowrap; /* 自适应宽度,不换行*/
- >input {
- margin-left:-7px;
- border: none;
- outline: none;
- background: #7FC1D7;
- width: 85%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- text-shadow:0px 0px 2px #999;
- }
- }
- }
- #userInfo {
- height: 430px;
- margin-top:4px;
- background: #E8F4F8;
- #sInfo {
- float:right;
- margin: 10px 2px;
- width: 50px;
- height: 30px;
- >a {
- padding-left:14px;
- font-size: 24px;
- color: #3EB0D2;
- text-decoration:none;
- &:hover {
- color:#5EB0D2;
- }
- }
- }
- #sCode {
- float:right;
- margin: 9px 2px;
- width: 50px;
- height: 30px;
- >a {
- padding-left:12px;
- font-size: 24px;
- color: #3EB0D2;
- text-decoration:none;
- &:hover {
- color:#5EB0D2;
- }
- }
- }
- .navdown {
- display: none;
- }
- #content {
- position: relative;
- >ul {
- position: absolute;
- list-style: none;
- margin: 0px 30px 0px -10px;
- #head {
- width: 100px;
- padding-top:20px;
- padding-bottom: 30px;
- margin-left:-10px;
- text-align: left;
- font-weight: bold;
- font-size: 16px;
- }
- >li {
- width: 340px;
- font-family: "微软雅黑","宋体";
- padding-bottom:19px;
- text-align: left;
- font-size: 12px;
- color: #444;
- white-space: nowrap; /* 自适应宽度,不换行*/
- >input.lr {
- margin-left: 40px;
- border: none;
- outline: none;
- background: #E8F4F8;
- width: 73%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- }
- }
- #userCode {
- position: relative;
- top: 90px;
- left: 90px;
- #code {
- position: absolute;
- width: 220px;
- height: 216px;
- border: 8px solid #fff;
- box-shadow:0px 0px 1px #999;
- }
- }
- }
- }
|