Commit 5c778530c5dd1a3c8a1f58ac054b257ebc4d825f
1 parent
afc65cdc72
Exists in
master
and in
1 other branch
update theme
Showing 3 changed files with 107 additions and 9 deletions Side-by-side Diff
app/images/logo.png
20.1 KB
app/styles/main.css
... | ... | @@ -64,13 +64,61 @@ |
64 | 64 | border-bottom: 1px solid #dcdcdc; |
65 | 65 | } |
66 | 66 | header .logo{ |
67 | - color: #ed1d24; | |
68 | - font-size: 30px; | |
69 | - text-transform: uppercase; | |
70 | - font-weight: bold; | |
67 | + padding-left: 0!important; | |
71 | 68 | } |
72 | 69 | header .logo img{ |
73 | - width: 60px; | |
70 | + height: 60px; | |
71 | +} | |
72 | +header .social-share{ | |
73 | + list-style: none; | |
74 | + background-color: #eeeeee; | |
75 | + display: table; | |
76 | + padding-left: 0; | |
77 | + margin-bottom: 0; | |
78 | +} | |
79 | +header .social-share li{ | |
80 | + float: left; | |
81 | + margin: 15px 15px; | |
82 | + background-color: #c5c5c5; | |
83 | + width: 30px; | |
84 | + height: 30px; | |
85 | + -moz-border-radius: 15px; | |
86 | + -webkit-border-radius: 15px; | |
87 | + border-radius: 15px; | |
88 | + text-align: center; | |
89 | + padding: 6px 0; | |
90 | +} | |
91 | +header .social-share li i{ | |
92 | + font-size: 20px; | |
93 | + color: #ffffff; | |
94 | +} | |
95 | +header .top-menu{ | |
96 | + list-style: none; | |
97 | + padding-left: 0; | |
98 | + margin-bottom: 3px; | |
99 | +} | |
100 | +header .top-menu li{ | |
101 | + float: left; | |
102 | + padding: 6px 10px; | |
103 | +} | |
104 | +header .top-control{ | |
105 | + list-style: none; | |
106 | + padding-left: 0; | |
107 | + margin-bottom: 0; | |
108 | +} | |
109 | +header .top-control li{ | |
110 | + float: left; | |
111 | + margin: 0 10px; | |
112 | +} | |
113 | +header .top-control li .bt-yellow{ | |
114 | + background-color: #fe6a00; | |
115 | + color: #ffffff; | |
116 | + padding: 4px 10px; | |
117 | + font-size: 12px; | |
118 | +} | |
119 | +header .user-control{ | |
120 | + background-color: #888888; | |
121 | + text-align: center; | |
74 | 122 | } |
75 | 123 | /*NAVIGATION*/ |
76 | 124 | nav{ |
app/views/main.html
1 | 1 | <div ng-controller="MainCtrl" class="col-sm-10 col-sm-offset-1" id="tshirt-container"> |
2 | 2 | <div class="row"> |
3 | - <header> | |
4 | - <div class="logo"> | |
5 | - <img src="images/logo_mobile_world.png" alt="Logo Mobile World" /> | |
6 | - MOBILE WORLD | |
3 | + <header class="clearfix"> | |
4 | + <div class="col-sm-4 logo"> | |
5 | + <img src="images/logo.png" alt="Logo Mobile World" /> | |
6 | + </div> | |
7 | + <div class="col-sm-2"> | |
8 | + <ul class="social-share clearfix"> | |
9 | + <li> | |
10 | + <a href="#"> | |
11 | + <i class="fa fa-facebook"></i> | |
12 | + </a> | |
13 | + </li> | |
14 | + <li> | |
15 | + <a href="#"> | |
16 | + <i class="fa fa-twitter"></i> | |
17 | + </a> | |
18 | + </li> | |
19 | + </ul> | |
20 | + </div> | |
21 | + <div class="col-sm-6 clearfix" style="padding-right: 0"> | |
22 | + <div class="pull-left"> | |
23 | + <ul class="top-menu clearfix"> | |
24 | + <li> | |
25 | + <a href="#">ABC</a> | |
26 | + </li> | |
27 | + <li> | |
28 | + <a href="#">ABC</a> | |
29 | + </li> | |
30 | + <li> | |
31 | + <a href="#">ABC</a> | |
32 | + </li> | |
33 | + </ul> | |
34 | + <ul class="top-control clearfix"> | |
35 | + <li> | |
36 | + <div class="bt-yellow"> | |
37 | + <i class="fa fa-shirtsinbulk" aria-hidden="true"></i> DESIGN に戻る | |
38 | + </div> | |
39 | + </li> | |
40 | + <li> | |
41 | + <div class="bt-yellow"> | |
42 | + <i class="fa fa-shopping-cart" aria-hidden="true"></i> 加工方法に戻る | |
43 | + </div> | |
44 | + </li> | |
45 | + </ul> | |
46 | + </div> | |
47 | + <div class="pull-right"> | |
48 | + <div class="user-control"> | |
49 | + <div> | |
50 | + 方法に戻る | |
51 | + </div> | |
52 | + <div> | |
53 | + <i class="fa fa-lock" aria-hidden="true"></i> に戻る | |
54 | + </div> | |
55 | + </div> | |
56 | + </div> | |
7 | 57 | </div> |
8 | 58 | </header> |
9 | 59 | <nav class="clearfix"> |