-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtabsview.css
153 lines (132 loc) · 2.34 KB
/
tabsview.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
html, body {
padding: 0;
margin: 10px;
height: 100%;
min-height: 100%;
}
body {
min-width: 300px; /* your desired width */
max-width: 300px;
min-height: 375px;
max-height: 375px;
position: relative;
vertical-align: middle;
background-color: #E0FFFF;
}
button {
display: inline;
margin: 0 auto 0 auto;
float: left;
background-color: transparent;
border: 2px black solid;
border-radius: 10px;
font-family: "Trebuchet MS", Helvetica, sans-serif;
font-size: 10pt;
}
button:focus {
outline: 0;
}
button:hover {
background-color: #3e8e41;
transition: all ease 0.8s;
}
button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(3px);
transition: all ease 0.1s;
}
.center {
text-align: center;
}
.inline {
display: inline;
text-align: left;
}
#goback {
text-align: right;
}
.savedtabs {
width: 92px;
height: 92px;
float: left;
border: 1px solid black;
display: inline-block;
border: 2px black solid;
border-radius: 8px;
margin: 2px;
}
.savedtabs:hover {
background-color: #3e8e41;
transition: all ease 0.8s;
}
.savedtabs img {
min-width: 32px;
max-width: 32px;
min-width: 32px;
max-height: 32px;
display: block;
margin: 18px auto auto 30px; /*to center img*/
float: none;
text-align: center;
}
.urltext {
display: block;
float: none;
text-align: center;
white-space: nowrap;
color: black;
font-family: "Trebuchet MS", Helvetica, sans-serif;
font-size: 8pt;
}
.x {
margin: 1.5px 6.5px 0px 0px;
display: block;
float: right;
text-align: right;
white-space: nowrap;
color: black;
font-family: "Trebuchet MS", Helvetica, sans-serif;
font-size: 15pt;
}
p.x:focus {
outline: 0;
}
p.x:hover {
color: #191919;
font-size: 18pt;
transform: translateY(-3px);
transition: all ease 0.5s;
}
p.x:active {
background-color: #3e8e41;
transform: translateY(3px);
transition: all ease 0.1s;
}
.savedtabs a {
color: black;
text-decoration: none;
}
#delete {
height: 32px;
width: 215px;
border: 2px black solid;
border-radius: 10px;
display: inline;
margin-top: 10px;
font-family: "Trebuchet MS", Helvetica, sans-serif;
font-size: 10pt;
float: left;
}
#prev {
margin-top: 10px;
margin-right: 13px
}
#next {
margin-top: 10px;
margin-left: 13px
}
#goback {
margin-top: -10px;
float: right;
}