Skip to content

Commit e17e7cc

Browse files
committed
style.css moved to home static folder
1 parent 256ff51 commit e17e7cc

File tree

1 file changed

+198
-0
lines changed

1 file changed

+198
-0
lines changed

static/css/style.css

Lines changed: 198 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,198 @@
1+
html {
2+
height: 100%;
3+
scroll-behavior: smooth;
4+
}
5+
6+
/* Title */
7+
.navbar-brand {
8+
font-size: 26px !important;
9+
}
10+
11+
.body {
12+
font-size: 14px;
13+
}
14+
15+
.tickets-container {
16+
max-width: 1564px;
17+
}
18+
19+
.view-ticket-container,
20+
.edit-ticket-container,
21+
.checkout-container,
22+
.add-ticket-container {
23+
max-width: 1300px;
24+
}
25+
26+
.kanban-container {
27+
max-width: 1400px;
28+
}
29+
30+
.user-list-container,
31+
.profile-container {
32+
max-width: 1200px;
33+
}
34+
35+
.dashboard-container {
36+
max-width: 1700px;
37+
}
38+
39+
/* Pie Chart and Row Chart labels */
40+
.pie-label-group text,
41+
g .row {
42+
font-size: 16px !important;
43+
}
44+
45+
/* Dashboard Filtered Count */
46+
#filtered-count {
47+
font-size: 16px;
48+
}
49+
/* footer */
50+
footer {
51+
width: 100%;
52+
bottom: 0;
53+
}
54+
55+
.clickable-row:hover {
56+
cursor: pointer;
57+
}
58+
59+
.jumbotron {
60+
padding-top: 32px;
61+
padding-bottom: 32px;
62+
}
63+
64+
.kanban-col {
65+
margin: 0px;
66+
padding: 0px;
67+
}
68+
69+
.kanban-col .jumbotron {
70+
padding: 6px;
71+
}
72+
73+
.kanban-todo {
74+
background-color: white;
75+
}
76+
.kanban-resolved {
77+
background-color: white;
78+
}
79+
80+
.kanban-in-progress {
81+
background-color: white;
82+
}
83+
84+
.kanban-cancelled {
85+
background-color: white;
86+
}
87+
88+
/* From https://github.com/masagameplay/light-bootstrap-colors/blob/master/lightBSColors.css */
89+
/* Background colors */
90+
.bg-primary-light {
91+
background: #e3e4e6;
92+
}
93+
.bg-success-light {
94+
background: #c3e6cb;
95+
}
96+
.bg-info-light {
97+
background: #6bc6e1;
98+
}
99+
.bg-warning-light {
100+
background: #ffeeba;
101+
}
102+
.bg-danger-light {
103+
background: #dc6460;
104+
}
105+
106+
.text-royal-blue {
107+
background: #0052cc;
108+
color: #0052cc;
109+
}
110+
111+
/* Text colors */
112+
.text-primary-light {
113+
background: #3490df;
114+
}
115+
.text-success-light {
116+
background: #6cbf6c;
117+
}
118+
.text-info-light {
119+
background: #6bc6e1;
120+
}
121+
.text-warning-light {
122+
background: #f1b55f;
123+
}
124+
.text-danger-light {
125+
background: #dc6460;
126+
}
127+
128+
/* Custom background colors */
129+
.bg-cyan-light {
130+
background-color: lightcyan;
131+
}
132+
.bg-grey-light {
133+
background-color: lightgrey;
134+
}
135+
136+
/* Kanban headers */
137+
.kanban-col .jumbotron h5 {
138+
padding: 8px;
139+
margin-bottom: 0;
140+
}
141+
142+
/* Tickets Search input boxes */
143+
#ticket-search-boxes th input {
144+
width: 100%;
145+
padding: 0px;
146+
box-sizing: border-box;
147+
}
148+
149+
#ticket-search-boxes th {
150+
padding: 0 1px 0 0;
151+
}
152+
153+
/* Ticket page Feature and Bug icons */
154+
.ticket-type-icon {
155+
font-size: 22px;
156+
}
157+
158+
/* Parallax Effect */
159+
body {
160+
height: 100%;
161+
}
162+
163+
.parallax {
164+
/* The image used */
165+
/* background-image: url('https://www.imgacademy.com/themes/custom/imgacademy/images/helpbox-contact.jpg'); */
166+
/* background-color: gainsboro; */
167+
168+
/* Full height */
169+
height: 100%;
170+
171+
/* Create the parallax scrolling effect */
172+
background-attachment: fixed;
173+
background-position: center;
174+
background-repeat: no-repeat;
175+
background-size: cover;
176+
}
177+
178+
/* nav icon size */
179+
.nav-item i {
180+
font-size: 30px;
181+
}
182+
183+
/* nav-item hover */
184+
.nav-item:hover {
185+
background-color: #0052cc;
186+
color: whitesmoke;
187+
transition: all 0.3s ease-in-out;
188+
}
189+
190+
/* index page section headings */
191+
h4 {
192+
color: #0052cc;
193+
}
194+
195+
* {
196+
/* outline: 1px solid lightcoral;
197+
outline-offset: -1px; */
198+
}

0 commit comments

Comments
 (0)