Page 314 - MDP2022-3
P. 314

<style>  h1,  body{  text-align:  center;  }  </style>
                    <link  href="{{  url_for('static',  filename='css/right.css')  }}"  rel="stylesheet">

            </head>
            <body>
            <h1><strong>버스  도착예정정보</strong></h1>

            {%  for  bus  in  locations  %}
                    {{  bus  }}<br>|<br>
            {%  endfor  %}

            </body>
            </html>

            <css  코드>

            123.css

            body  {

                    font:  20px  "Lucida  Grande",  Helvetica,  Arial,  sans-serif;
                    background-color:  lightslategray;
                    font-family:  'Do  Hyeon',  sans-serif;

            }

            div{
                    width:  auto;
                    text-align:  center;
                    border-radius:  0.4em;
            }

            a,  li{
                    text-align:  center;
                    text-decoration-line:  none;
                    font-family:  'Do  Hyeon',  sans-serif;
                    font-size:  0.999cm;
                    background-color:  white  ;
            }

            a:link  {
                    color  :  blue;
                    text-decoration:  none;
                }
                a:visited  {
                    color  :  black;
                    text-decoration:  none;
                }
                a:hover  {
                    color  :  red;
                    text-decoration:  none;
                }
                a:active  {
                    color  :  green;
                    text-decoration:  none;
                }



                .btn-4  {
   309   310   311   312   313   314   315   316   317   318   319