-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (92 loc) · 1.66 KB
/
style.css
File metadata and controls
108 lines (92 loc) · 1.66 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
nav {
width: 100%;
height: 12.5vh;
background-color: #252831;
text-align: center;
margin: 0 auto;
}
body {
background-color: #fdfdfd;
margin: 0;
height: 100%;
width: 100%;
}
nav h1 {
margin: 0 auto;
padding-top: 14px;
font-size: 1.3rem;
transition: 1s;
}
#footer {
background-color: #444;
color: #aaa;
font-size: 1.56vh;
letter-spacing: 1px;
padding: 3.91vh;
text-align: center;
text-transform: uppercase;
right: 0;
bottom: 0;
left: 0;
}
a {
color: orange;
text-decoration: none;
}
main {
background-color: #ffbc6538;
min-height: 78vh;
margin: 0;
text-align: center;
}
/* This removes the counter buttons on the input field */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.pixelToVH,
.pixelToVW,
.vwToPixel,
.vhToPixel {
width: 160px;
height: 35px;
padding-left: 15px;
border: none;
border-radius: 20px;
margin: 10px;
background: rgb(20, 8, 122);
}
input {
color: #ffffff;
font-size: 18px;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
outline: none;
}
.text {
display: inline-block;
padding-bottom: 10px;
margin-top: 12px;
color: #0e2175;
text-decoration: none;
border-bottom: solid 2px rgb(44, 85, 182);
font-size: 16px;
font-weight: 900;
}
.result {
display: inline-block;
margin-top: -7px;
color: #0e2175;
text-decoration: none;
font-size: 15px;
font-weight: 900;
}
@media screen and (min-width: 500px) {
nav h1 {
font-size: 1.5rem;
}
}