Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 4.04 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2.  
  3. <html lang="RU" dir="ltr">
  4.  
  5. <head>
  6.     <title>Профиль</title>
  7.     <meta name="description" content="Профиль игрока">
  8.     <meta name="keywords" content="профиль, игрок">
  9.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  10.     <style>
  11.         body {
  12.             background-color: #101727;
  13.             margin: 0;
  14.             font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
  15.                 "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
  16.                 sans-serif;
  17.         }
  18.  
  19.         .paper {
  20.             width: 600px;
  21.             display: flex;
  22.             margin: 20px auto 0 auto;
  23.             border-radius: 4px;
  24.             background: #fff;
  25.         }
  26.  
  27.         .paper h3 {
  28.             margin: 0;
  29.         }
  30.  
  31.         .div-row {
  32.             display: flex;
  33.             flex-direction: row;
  34.             width: 100%
  35.         }
  36.  
  37.         .div-row h3 {
  38.             text-align: center;
  39.             margin: 2px 0;
  40.         }
  41.  
  42.         .logo {
  43.             background: url(https://pbs.twimg.com/profile_images/1186876544263872512/MA8AZsIV_400x400.jpg) no-repeat;
  44.             background-size: cover;
  45.             width: 200px;
  46.             height: 200px;
  47.             display: block;
  48.             border-radius: 50%;
  49.         }
  50.  
  51.         .notification {
  52.             display: block;
  53.             background-color: gainsboro;
  54.             border-radius: 5px;
  55.             padding: 4px;
  56.             margin-left: auto;
  57.             width: 200px;
  58.             text-align: center;
  59.             cursor: pointer;
  60.         }
  61.  
  62.         .div-row .field {
  63.             margin: 8px;
  64.  
  65.         }
  66.  
  67.         .paper .right {
  68.             margin: 16px;
  69.             width: 100%;
  70.             display: flex;
  71.             flex-direction: column;
  72.         }
  73.  
  74.         .div-row .progress {
  75.             margin: auto 8px 8px 8px;
  76.         }
  77.  
  78.         .progress .bar {
  79.             margin: 4px 0;
  80.             display: flex;
  81.             flex-direction: row;
  82.         }
  83.  
  84.         .notification:hover {
  85.             background-color: #bababa;
  86.         }
  87.  
  88.         .paper .left {
  89.             margin: 16px;
  90.         }
  91.  
  92.         .progress .percent {
  93.             margin-left: auto;
  94.         }
  95.  
  96.         .progress-left {
  97.             width: 35%;
  98.             background-color: red;
  99.             height: 4px;
  100.         }
  101.  
  102.         .progress-right {
  103.             width: 65%;
  104.             background-color: orange;
  105.             height: 4px;
  106.         }
  107.     </style>
  108. </head>
  109.  
  110. <body>
  111.     <div class="paper">
  112.         <div class="div-row">
  113.  
  114.             <div class="left">
  115.                 <h3>SugarBoy_</h3>
  116.                 <div class="logo"></div>
  117.             </div>
  118.  
  119.             <div class="right">
  120.                 <div class="notification">
  121.                     Уведомлений: <b>0</b>
  122.                 </div>
  123.  
  124.                 <div class="field">
  125.                     <b>Имя:</b><br />
  126.                     Никита
  127.                 </div>
  128.  
  129.                 <div class="field">
  130.                     <b>Почта:</b><br />
  131.                     <a href="mailto:sugarisboy@muskrat.dev">sugarisboy@muskrat.dev</a>
  132.                 </div>
  133.  
  134.                 <div class="progress">
  135.                     <div class="div-row">
  136.                         <div>
  137.                             <b>Твой ранг:</b> Капитан
  138.                         </div>
  139.                         <div class="percent">
  140.                             <b>35%</b>
  141.                         </div>
  142.                     </div>
  143.                     <div class="bar">
  144.                         <div class="progress-left">
  145.                             &nbsp;
  146.                         </div>
  147.                         <div class="progress-right">
  148.                             &nbsp;
  149.                         </div>
  150.  
  151.                     </div>
  152.                 </div>
  153.             </div>
  154.         </div>
  155.     </div>
  156. </body>
  157.  
  158. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement