aboutsummaryrefslogtreecommitdiffstats
path: root/csci4131/hw3/style.css
blob: 3ab6b95cbbfdb0e1229b184cc3fa4ee9c834c48b (plain) (blame)
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
/* Global */
body {
    background-color:antiquewhite;
}
.linkTable {
    border: 1px solid black;
    margin-left: 20px;
    background-color: white;
    border-collapse: separate;
}

/* Contacts */
table, th, td {
    max-width: 80%;
    overflow-x:auto;
    border: 1px solid black; 
    border-collapse: collapse;
}
table {
    float:left;
    max-width: 60%;
}
tr:nth-child(even) {
    background-color:blanchedalmond;
}
tr:nth-child(odd) {
    background-color: burlywood;
}
.smol {
    max-height: 100%;
    width: 6em;
}
.large {
    float: right;
    max-width: max-content;
}
#bigboi {
    width: 25em;
    height: 15em;
    object-fit: cover;
    margin-right: 0;
}
.isRotating { 
    animation:5s rotate infinite linear; 
}
.isntRotating {
    animation-play-state: paused;
}
@keyframes rotate{
    100%{ transform:rotate(1turn) }
}
#map, #formap {
    /* clear: both; */
    float: left;
    padding-top: 30%;
    margin-top: 1em;
    margin-left: .2em;
    width: 50%;
    height: 30%;
    max-height: 40%;
}
#formap {
    float: right;
}
#transitList {
    float: left;
    width: 20%;
    color: white;
}
.id {
    text-align: center;
}
#googlymap {
    width: 100%;
    overflow: auto;
    /* display: flex; */
    /* position: absolute; */
}

.inputBox {
    float: left;
    border: 1px solid black;
    width: 25%;
}
.inputBox:nth-child(even) {
    background-color:blanchedalmond;
}
.inputBox:nth-child(odd) {
    background-color: burlywood;
}
#others {
    display:none;
}

/* Form */
.Form {
    float: left;
    background-color: whitesmoke;
    padding-left: 5%;
    max-width: 15%;
}
/* Widgets */
.grid {
    align-content: center;
    display: inline-grid;
    grid-template-columns: 40% 40%;
    grid-template-rows: 30%;
    gap: .1em 10%;
}
.griditem {
    padding: 10%;
}
iframe {
    border: 0px;
}