-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
155 lines (126 loc) · 2.38 KB
/
style.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
154
155
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap');
body {
font-family: 'Montserrat', sans-serif;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
p {
margin-bottom: 0 !important;
}
h1 {
margin: 0 !important;
}
#header-container {
color: white;
background-color: #f1f1ef;
border-radius: 0.375rem;
padding: 20px;
background-color: #B9BD86;
transition: background-color 7s;
}
#carHeader {
transition: 7s;
}
#header-text {
border-radius: 0.375rem;
text-shadow: 2px 8px 6px rgba(0, 0, 0, 0.2), 0px -5px 35px rgba(255, 255, 255, 0.3);
}
input {
height: 45px;
background-color: #f1f1f1 !important;
}
.clearable {
background: url(./cross.svg) no-repeat right -12px center;
padding: 6px 25px 6px 12px;
/* Use the same right padding (18) in jQ! */
border-radius: 3px;
transition: background 0.4s;
background-size: 9px;
}
.clearable.x {
background-position: right 10px center;
}
/* (jQ) Show icon */
.clearable.onX {
cursor: pointer;
}
/* (jQ) hover cursor style */
.clearable::-ms-clear {
display: none;
width: 0;
height: 0;
}
.label-text {
color: #f1f1f1;
margin-left: 55px;
padding-bottom: 8px;
}
.tab-focus:focus {
outline: 4px solid #B9BD86;
outline-offset: -1px;
font-weight: bold;
}
#buttonCalc {
background-color: #c19434 !important;
height: 49px;
}
#buttonCalc:active {
transform: translateY(2px);
}
#buttonCalc:hover {
box-shadow: 0px 5px 3px #3f535d !important;
color: black;
}
#buttonClear {
background-color: #34421e !important;
height: 49px;
}
#buttonClear:active {
transform: translateY(2px);
}
#buttonClear:hover {
box-shadow: 0px 5px 4px #3f535d !important;
color: black;
}
hr {
height: 5px !important;
margin: 0 !important;
border-radius: 0.375rem;
background: rgb(255, 255, 255);
}
#footer-team-text {
color: #B9BD86;
padding: 3px;
}
#footer-author-text {
color: #f1f1ef;
padding: 3px;
}
#custom-height {
padding: 5%;
}
@media only screen and (min-width: 300px) {
#custom-height {
height: 100% !important;
}
#header-container {
padding: 10px;
margin-bottom: 12px !important;
}
.label-text {
padding-bottom: 4px;
}
}
@media only screen and (min-width: 1000px) {
#custom-height {
height: 100% !important;
}
}
@media only screen and (min-height: 850px) {
#custom-height {
height: 100vh !important;
}
}