-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasicstyles.css
More file actions
118 lines (107 loc) · 2.17 KB
/
basicstyles.css
File metadata and controls
118 lines (107 loc) · 2.17 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
html {
display: block;
width: 100%;
height: 100%;
overflow: hidden;
}
html {
padding: 0px;
margin: 0px;
}
body {
background-color: #141a1f;
color: #EDEDED;
font-family: Roboto, Verdana, Arial, Sans-Serif;
font-size: 17px;
box-sizing: border-box;
padding: 128px 24px;
margin: 0px;
width: 100%;
height: 100%;
text-align: center;
}
a, a:visited {
color: #b5131b;
}
a:hover {
color: #c90009;
}
select {
display: inline-block;
vertical-align: middle;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
vertical-align: middle;
min-width: 300px;
max-width: 100% !important;
padding: 0px 4px;
height: 36px;
margin-top: 4px;
margin-bottom: 4px;
cursor: default;
background-color: #444444;
background: #444444;
color: #EDEDED;
font-family: robotolight, Roboto, roboto, Arial, sans-serif;
font-size: 17px;
border: solid #333333 1px;
border-radius: 3px;
transition: 0.15s;
}
select:focus, select:hover, select:active {
background-color: #555555;
outline: 0 !important;
transition: 0.05s;
}
input[type=text], input[type=password], input[type=file] {
display: inline-block;
vertical-align: middle;
padding: 4px;
margin: 0px;
height: 36px;
min-width: 300px;
max-width: 100% !important;
margin-top: 4px;
margin-bottom: 4px;
box-sizing: border-box;
font-size: 17px;
font-family: robotolight, Roboto, roboto, Arial, sans-serif;
border: solid #333333 1px;
border-radius: 3px;
background-color: #444444;
background: #444444;
color: #EDEDED;
caret-color: #EDEDED;
text-align: left;
cursor: text;
transition: 0.15s;
}
input[type=file] {
cursor: default;
height: initial;
min-height: 32px;
color: #999999;
}
input[type=text]:focus, input[type=text]:hover, input[type=password]:focus, input[type=password]:hover, input[type=file]:focus, input[type=file]:hover {
outline: 0;
background-color: #555555;
transition: 0.05s;
}
input[type=submit] {
display: inline-block;
vertical-align: middle;
padding: 0px 16px;
height: 34px;
border: none;
border-radius: 3px;
cursor: pointer;
background: #b5131b;
color: #EDEDED;
font-size: 17px;
transition: 0.15s;
}
input[type=submit]:hover {
background: #c90009;
transition: 0.05s;
}