This repository was archived by the owner on Jul 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforums.css
More file actions
108 lines (89 loc) · 1.6 KB
/
forums.css
File metadata and controls
108 lines (89 loc) · 1.6 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
#header {
text-align: center;
font-size: 40px;
margin: 15px;
}
#sub_header {
text-align: center;
font-size: 20px;
margin: 15px;
}
.forum-nav {
background-color: #DADADA;
}
.forum-nav.active {
background-color: white;
}
#new_search {
margin-top: 25px;
}
#forum_container {
overflow-y: scroll;
overflow-x: hidden;
width: 100%;
margin-top: 15px;
height: 350px;
background-color: white;
border: 1px solid gray;
border-radius: 5px;
}
.post {
height: 55px;
line-height: 15px;
border-bottom: 1px solid gray;
padding: 20px 0px;
transition: background-color 0.3s ease;
}
.post:hover {
background-color: rgba(76,102,164,0.7);
color: white;
}
.number {
color: #4c66a4;
}
.post:hover .number, .post:hover .good-post-button {
color:white;
}
.align-left {
text-align:left;
}
.align-right {
text-align:right;
}
.search-field {
width:300px;
float:right;
}
.good-post-button {
cursor: pointer;
color:black;
margin-left:5px;
}
.post:hover .good-post-button:hover {
color:#FFB300;
text-decoration: none;
}
#content {
border-radius: 4px;
/*background-color: #4c66a4;*/
/*color: #f7f7f5;*/
background-color: #f7f7f5;
padding-bottom:30px;
}
.btn {
transition: background-color 0.3s ease;
border-color: rgb(76,102,164);
background-color: #FFFFFF;
}
.btn:hover {
color:white;
background-color: rgba(76,102,164,0.7);
}
.btn.active {
color: white;
background-color: rgb(76,102,164);
}
input:focus, input:active {
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset !important;
border: 1px solid rgb(76,102,164) !important;
}