Browse Source

최신 스킨 변수 반영

Surplus_Up (2DU) 6 năm trước cách đây
mục cha
commit
9551a57f20

+ 10 - 2
views/neo_yousoro/css/main.css

@@ -400,6 +400,14 @@ a:hover {
     text-decoration: none;
     text-decoration: none;
 }
 }
 
 
-.foot_plus {
-    border-radius: 10px;
+h1#title {
+    margin-bottom: 10px;
+}
+
+div#last_edit {
+    margin-bottom: 20px;
+}
+
+#topic_color {
+    color: limegreen;
 }
 }

+ 16 - 3
views/neo_yousoro/index.html

@@ -130,7 +130,11 @@
                         <div id="tool" class="not_mobile">
                         <div id="tool" class="not_mobile">
                             {% for sub_d in menu %}
                             {% for sub_d in menu %}
                                 <div id="tool_cel">
                                 <div id="tool_cel">
-                                    <a class="menu-item" href="/{{sub_d[0]}}">{{sub_d[1]}}</a>
+                                    {% if sub_d|length > 2 and sub_d[2] == 1 %}
+                                        <a class="menu-item" href="/{{sub_d[0]}}" id="topic_color">{{sub_d[1]}}</a>
+                                    {% else %}
+                                        <a class="menu-item" href="/{{sub_d[0]}}">{{sub_d[1]}}</a>
+                                    {% endif %}
                                 </div>
                                 </div>
                                 {% if menu[loop.index] %}
                                 {% if menu[loop.index] %}
                                     |
                                     |
@@ -138,17 +142,26 @@
                             {% endfor %}
                             {% endfor %}
                         </div>
                         </div>
                     {% endif %}
                     {% endif %}
-                    <h1>
+                    <h1 id="title">
                         {{imp[0]}}
                         {{imp[0]}}
                         {% if imp[3][0] != 0 %}
                         {% if imp[3][0] != 0 %}
                             <sub>{{imp[3][0]}}</sub>
                             <sub>{{imp[3][0]}}</sub>
                         {% endif %}
                         {% endif %}
                     </h1>
                     </h1>
+                    <div id="last_edit">
+                        {% if imp[3][1] != 0 %}
+                            {{'last_edit_time'|load_lang}} : {{imp[3][1]}}
+                        {% endif %}
+                    </div>
                     {% if menu != 0 %}
                     {% if menu != 0 %}
                         <div id="tool" class="is_mobile">
                         <div id="tool" class="is_mobile">
                             {% for sub_d in menu %}
                             {% for sub_d in menu %}
                                 <div id="tool_cel">
                                 <div id="tool_cel">
-                                    <a class="menu-item" href="/{{sub_d[0]}}">{{sub_d[1]}}</a>
+                                    {% if sub_d|length > 2 and sub_d[2] == 1 %}
+                                        <a class="menu-item" href="/{{sub_d[0]}}" id="topic_color">{{sub_d[1]}}</a>
+                                    {% else %}
+                                        <a class="menu-item" href="/{{sub_d[0]}}">{{sub_d[1]}}</a>
+                                    {% endif %}
                                 </div>
                                 </div>
                                 {% if menu[loop.index] %}
                                 {% if menu[loop.index] %}
                                     |
                                     |