-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
134 lines (105 loc) · 1.79 KB
/
options.css
File metadata and controls
134 lines (105 loc) · 1.79 KB
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
* {
font-family: "Open Sans", sans-serif;
margin: auto;
text-align: center;
}
header {
color: #0ad8c4;
font-size: 300%;
width: 18%;
padding: 10px;
}
body {
background-color:#212121;
position: relative;
}
footer {
display: flex;
justify-content: center;
padding-top: 5%;
text-align: center;
}
.per-site {
color: #0ad8c4;
font-size: 250%;
padding: 10px;
}
.input-desc {
color: #FFFFFF;
font-size: 18px;
display: inline;
}
.website {
width: 175px;
/* Rounded corners */
border-radius: 5px;
border: 0;
}
.per-site-field {
width: 50px;
/* Rounded corners */
border-radius: 5px;
border: 0;
}
input {
width: 50px;
padding: 8px;
/* Rounded corners */
border-radius: 5px;
border: 0;
}
/* This is literally just for a single ':'; I know it's kinda ridiculous */
.colon {
color: #FFFFFF;
display: inline;
font-size: 20px;
/* padding: 2px; */
/* margin-right: .5px; */
}
/* Submit button */
input[type=submit] {
cursor: pointer;
/* Rounded corners */
border-radius: 5px;
border: 0;
/* Keep it small */
width: 80px;
height: 35px;
/* Match icon background */
background: #0ad8c4;
}
.add {
cursor: pointer;
/* Rounded corners */
border-radius: 5px;
border: 0;
width: 1%;
/* Match icon background */
background: #0ad8c4;
}
.remove {
float: left;
cursor: pointer;
/* Rounded corners */
border-radius: 5px;
border: 0;
width: 13%;
/* Match icon background */
background: #0ad8c4;
}
.tableContainer {
margin-left: 5%;
}
.support {
color: hotpink;
font-size: 18px;
}
a:hover {
color: #0ad8c4;
}
a:visited {
color: #66ccff;
}
a:active {
color: #ff9933;
}