-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.css
96 lines (82 loc) · 1.29 KB
/
example.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
*, *:before, *:after {
box-sizing: border-box;
}
html, body {
width: 100%;
overflow-x: hidden;
}
body {
background: #fff;
color: #505050;
font: 14px 'Segoe UI', tahoma, arial, helvetica, sans-serif;
margin:0;
padding: 0;
min-height: 100%;
min-width: 100%;
outline:0;
border:0;
vertical-align:baseline;
line-height:1;
}
.full{
height: 100%;
min-height: 100%;
}
.header {
background: #efefef;
padding: 0;
}
h1 {
font-size: 48px;
font-weight: normal;
margin: 0;
padding: 0 30px;
line-height: 150px;
}
p.sub-title {
font-size: 20px;
color: #fff;
background: #969696;
padding: 0 30px;
line-height: 50px;
}
.main {
padding: 5px 30px;
}
ul {
list-style: none;
padding: 0;
margin: 0;
line-height: 20px;
}
li {
padding: 4px 0;
}
a {
color: #267cb2;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.lateral-spaced {
margin-left: 3px;
margin-right:3px;
}
.img-thumbnail {
padding: 4px;
line-height: 1.42857143;
background-color: #ffffff;
border: 1px solid #dddddd;
border-radius: 4px;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
display: inline-block;
max-width: 80%;
height: auto;
margin-bottom: 10px;
}
.pushed {
margin-left:10px;
}