-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathframe.css
116 lines (116 loc) · 1.98 KB
/
frame.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
* {
margin: 0;
padding: 0;
}
html {
height: 100%;
width: 100%;
}
body {
font-family:'Helvetica Neue', Arial, sans-serif;
font-size: 13px;
min-height: 100%;
width: 100%;
background: #f4f4f4;
position: relative;
}
h1 {
font-size: 2em;
margin: 0.5em 0;
}
h2 {
font-size: 1.8em;
margin: 0.5em 0;
}
h3 {
font-size: 1.5em;
margin: 0.5em 0;
}
#footer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 60px;
padding: 20px;
box-shadow: 0 -1px 13px rgba(0, 0, 0, 0.4);
background: #f9f9f9;
}
#header {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 95px;
padding: 20px;
box-shadow: 0 1px 13px rgba(0, 0, 0, 0.4);
background: #f9f9f9;
}
#main {
padding: 135px 20px 100px;
}
.scroll-wrapper {
height: 500px;
overflow: hidden;
position: relative;
margin: 50px 10px;
width: 700px;
background: #fff;
border: 1px solid #ccc;
z-index: 0;
}
.scroll-area {
width: 100%;
height: 100%;
overflow: auto;
position: relative;
}
.scroll {
padding: 20px;
position: relative;
}
.scroll {
width: auto;
}
.sc1 {
width: auto;
}
.sc2 {
width: 4000px;
}
.sc3 {
width: 1500px;
}
::-webkit-scrollbar {
height: 0;
width: 0;
display: none;
opacity: 0;
}
.button {
-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
box-shadow:inset 0px 1px 0px 0px #ffffff;
background-color:#ededed;
-moz-border-radius:2px;
-webkit-border-radius:2px;
border-radius:2px;
border:1px solid #dcdcdc;
display:inline-block;
color:#777777;
font-family:arial;
font-size:16px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
text-shadow:1px 1px 0px #ffffff;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.button:hover {
background-color:#dfdfdf;
}
.button:active {
background-color:#d1d1d1;
}