-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshoestrap.css
121 lines (100 loc) · 1.24 KB
/
shoestrap.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
a {
text-decoration: none;
}
.col-1 {
float: left;
width: 8.33333333%;
}
.col-2 {
float: left;
width: 16.66666667%;
}
.col-3 {
float: left;
width: 25%;
}
.col-4 {
float: left;
width: 33.33333333%;
}
.col-5 {
float: left;
width: 41.66666667%;
}
.col-6 {
float: left;
width: 50%;
}
.col-7 {
float: left;
width: 58.33333333%;
}
.col-8 {
float: left;
width: 66.66666667%;
}
.col-9 {
float: left;
width: 75%;
}
.col-10 {
float: left;
width: 83.33333333%;
}
.col-11 {
float: left;
width: 91.66666667%;
}
.col-12 {
float: left;
width: 100%;
}
/*
div {
height: 50px;
border: 1px solid red;
}*/
.navbar {
position: fixed;
top: 0;
width:100%;
z-index: 1;
}
.navbar ul {
margin:0;
}
.navbar li {
display: inline-block;
}
img {
vertical-align: middle;
border: 0;
}
.hero-image {
width: 100%;
max-width: 400px;
display: block;
margin: 0 auto;
padding-top: 15%;
}
@media screen and (min-width: 992px) {
.row {
margin-left: 100px;
margin-right: 100px
}
}
.row:before {
display: table;
content: "";
}
.row:after {
display: table;
content: "";
clear: both;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin:0;
}