-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (71 loc) · 1009 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* change to mobile at 750 */
/* PC */
#mainItem
{
width:100%;
}
.secondaryItems
{
width:calc(100% - 16px);
font-size:0;
position:absolute;
top:75px;
}
.col12, .col6, .col4, .col3, .col1, .navigation
{
border-style: solid;
border-width: 2px;
border-color: white;
}
.col12
{
width:8.33%;
}
.col6
{
width:16.66%;
}
.col4
{
width:25%;
}
.col3
{
width: calc(33.333333333333% - 4px);
float: left;
}
.col1
{
width: calc(100% - 4px);
float: left;
}
img
{
width:100%;
margin:0px;
padding:0px;
}
.navigation
{
position:absolute;
background:green;
width:calc(100% - 20px);
height:75px;
}
.navigationInner
{
position:relative;
left:20%;
width:60%;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
justify-content: space-around;
}
.navItems
{
padding-top: 25px;
}