forked from carolinepar/comp426Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomstyle.css
More file actions
151 lines (119 loc) · 2.27 KB
/
customstyle.css
File metadata and controls
151 lines (119 loc) · 2.27 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#content {
margin: auto;
width: 70%;
padding-top: 70px;
}
#navBkgd {
width: 100%;
position: fixed;
background-color: #333333;
padding:0px;
margin: 0px;
top:0px;
left: 0px;
}
#nav {
right: 0px;
position: fixed;
background-color: #333333;
padding: 0px;
margin: 0px;
top: 0px;
color: #ffffff;
}
#nav ul {
list-style-type: none;
}
#nav li {
display: inline-block;
width: 70px;
}
.loginForm {
width: 200px;
border-style: solid;
border-width: thin;
margin: auto;
padding: 20px;
}
#loginForms{
display: block;
text-align: center;
}
/* #create-account { ----commented out bc was same ad #login - merged to one class
width: 200px;
height: 155px;
border-style: solid;
border-width: thin;
*/
/* margin: auto; */
/* }
*/
#teamNav {
display: block;
position: fixed;
top: 100px;
}
#nav li {
list-style-type: none;
}
#mockup-tile {
width: 400px;
height: 400px;
border-style: solid;
border-width: thin;
padding: 30px;
}
#threadTitle {
margin-left: 4%;
margin-top: 30px;
}
.search {
position: relative;
display: inline-block;
width: 80%;
}
/* #submitSearch {
width: 80px;
height: 30px;
} */
.search input {
border: 1px solid transparent;
background-color: #f1f1f1;
padding: 10px;
font-size: 16px;
}
.search input[type=text] {
background-color: #f1f1f1;
width: 100%;
}
.search input[type=submit] {
background-color: DodgerBlue;
color: #fff;
}
.autocompleteItems {
position: absolute;
border: 1px solid #d4d4d4;
border-bottom: none;
border-top: none;
z-index: 99;
/*position the autocomplete items to be the same width as the container:*/
top: 100%;
left: 0;
right: 0;
}
.autocompleteItems div {
padding: 10px;
cursor: pointer;
background-color: #fff;
border-bottom: 1px solid #d4d4d4;
color: black;
}
.autocompleteItems div:hover {
/*when hovering an item:*/
background-color: #e9e9e9;
}
.autocompleteItems {
/*when navigating through the items using the arrow keys:*/
background-color: DodgerBlue !important;
color: #ffffff;
}