-
Notifications
You must be signed in to change notification settings - Fork 1
/
stylesheet.css
127 lines (115 loc) · 2.48 KB
/
stylesheet.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
/*
By: Brendan Luke
Date: August 11, 2021
Purpose: this CSS file is to hold the stylings for the NMEA-Sentence-Decoder.html file
*/
/* General & Body styling */
body {
background-color: #666;
padding: 0;
margin: 0;
}
/* Header styling */
#header {
height: 6vh;
background-color: #45900f;
border-bottom: 0.5vh solid #eee;
}
#header .header-select-icon {
height: 4vh;
width: 10vw;
border: 0.5vh solid #444;
border-radius: 1vh;
display: flex;
top: 0.5vh;
position: absolute;
justify-content: center;
align-items: center;
background-color: #eee;
font-family: Arial, Helvetica, sans-serif;
font-size: 3vh;
font-weight: bold;
transition-duration: 0.25s;
}
#header .header-select-icon:hover {
background-color: #0d5198;
color: #eee;
}
#header .header-select-icon-active {
height: 4vh;
width: 10vw;
border: 0.5vh solid #444;
border-radius: 1vh;
display: flex;
top: 0.5vh;
position: absolute;
justify-content: center;
align-items: center;
background-color: #eee;
font-family: Arial, Helvetica, sans-serif;
font-size: 3vh;
font-weight: bold;
background-color: #0d5198;
color: #eee;
}
/* Input House styling */
#inputHouse {
display: flex;
}
#inputHouse .borderBox {
display: flex;
justify-content: center;
align-items: center;
width: 45vw;
height: 35vh;
background-color: #45900f;
margin-top: 25vh;
margin-left: 3vw;
border-radius: 3vw;
}
#inputHouse .innerBox {
width: 42vw;
height: 32vh;
background-color: #eee;
margin: none;
border-radius: 3vw;
}
#inputHouse .inputUnit {
width: 35vw;
height: 25vh;
margin-top: 3.5vh;
margin-left: 3.5vw;
}
#inputHouse input {
display: none;
}
#inputHouse label {
font-family: Arial, Helvetica, sans-serif;
position: relative;
left: 5vw;
top: 1vh;
font-size: 2vh;
line-height: normal;
color: #444;
}
/* Submit House styling */
#submitHouse .submitButton {
position: relative;
left: 30vw;
width: 40vw;
top: 5vh;
}
/* Upload .txt file & submit button */
button {
font-size: 5vh;
color: white;
border-radius: 1vh;
padding: 1.2vh 2vw;
background-color: #45900f;
border: 0.4vh solid #444;
transition-duration: 0.25s;
}
button:hover {
color: #0d5198;
border-color: #0d5198;
}