|
1 | | -/* main.css - (c) 2019 Thomas Woehlke */ |
2 | | -html { |
3 | | - position: relative; |
4 | | - min-height: 100%; |
5 | | -} |
6 | | - |
7 | | -body { |
8 | | - padding-top: 3.5rem; |
9 | | - padding-bottom: 3.5rem; |
10 | | - font-family: 'Lato', sans-serif; |
11 | | - line-height: 1.5; |
12 | | - /* |
13 | | - font-family: 'Varela Round', sans-serif; |
14 | | - font-family: 'Roboto', sans-serif; |
15 | | - font-family: 'Open Sans', sans-serif; |
16 | | - font-family: 'Poppins', sans-serif; |
17 | | - font-family: 'Lato', sans-serif; |
18 | | - font-family: 'Montserrat', sans-serif; |
19 | | - */ |
20 | | - /* |
21 | | - font-family: 'Nunito', sans-serif; |
22 | | - font-family: 'Open Sans', sans-serif; |
23 | | - font-family: 'Montserrat', sans-serif; |
24 | | - font-family: 'Lato', sans-serif; |
25 | | - */ |
26 | | -} |
27 | | - |
28 | | -h1,h2,h3,h4,h5,h6 { |
29 | | - font-family: 'Varela Round', sans-serif; |
30 | | - font-weight:bold |
31 | | -} |
32 | | - |
33 | | -tt,th,code,kbd,samp,pre{ |
34 | | - font-family: 'Varela Round', sans-serif; |
35 | | -} |
36 | | - |
37 | | - |
38 | | -.jumbotron { |
39 | | - border-radius: 0 !important; |
40 | | -} |
41 | | - |
42 | | -div#tw-content-title-actionbuttons { |
43 | | - margin-top: 1rem; |
44 | | -} |
45 | | - |
46 | | -div#collapseDescription { |
47 | | - margin-top: 1.5rem; |
48 | | -} |
49 | | - |
50 | | -@media (min-width: 576px){ |
51 | | - .jumbotron { |
52 | | - padding: 2rem 1rem !important; |
53 | | - } |
54 | | -} |
55 | | - |
56 | | -.footer { |
57 | | - position: absolute; |
58 | | - bottom: 0; |
59 | | - width: 100%; |
60 | | - /* Set the fixed height of the footer here */ |
61 | | - /* height: 30px; */ |
62 | | -} |
63 | | - |
64 | | -/* |
65 | | -.navbar { |
66 | | - padding: .25rem .5rem !important; |
67 | | -} |
68 | | - */ |
69 | | - |
70 | | -#taskStateNavigationContainer { |
71 | | - padding-top: 1rem; |
72 | | - padding-bottom: 1rem; |
73 | | -} |
74 | | - |
75 | | -.navbar-text-footer { |
76 | | - display: inline-block; |
77 | | -} |
78 | | - |
79 | | -.navbar-dark .navbar-text-footer { |
80 | | - color: rgba(255,255,255,.5); |
81 | | -} |
82 | | - |
83 | | -.nav-list { |
84 | | - padding-left: 10px; |
85 | | -} |
86 | | - |
87 | | -#rootCategory { |
88 | | - padding-left: 0px !important; |
89 | | -} |
90 | | - |
91 | | -#tw-main-section { |
92 | | - padding-bottom: 1rem !important; |
93 | | - margin-bottom: 1rem !important; |
94 | | -} |
95 | | - |
96 | | -#user-login-form { |
97 | | - margin-top: 1rem; |
98 | | - margin-bottom: 1rem; |
99 | | -} |
100 | | - |
101 | | -#user-login-form-more-information { |
102 | | - |
103 | | -} |
104 | | - |
105 | | -#newUser2UserMessageForm { |
106 | | - margin-bottom: 1rem; |
107 | | -} |
108 | | - |
109 | | -#tw-project-submenu-col { |
110 | | - padding-top: 0.75rem; |
111 | | -} |
112 | | - |
113 | | -#tw-project-submenu-root { |
114 | | - margin-top: 0.75rem; |
115 | | -} |
| 1 | +/* main.css - (c) 2019 Thomas Woehlke */ |
| 2 | + |
| 3 | +html { |
| 4 | + position: relative; |
| 5 | + min-height: 100%; |
| 6 | +} |
| 7 | + |
| 8 | +body { |
| 9 | + padding-top: 3.5rem; |
| 10 | + padding-bottom: 3.5rem; |
| 11 | + font-family: 'Lato', sans-serif; |
| 12 | + line-height: 1.5; |
| 13 | +} |
| 14 | + |
| 15 | +h1, h2, h3, h4, h5, h6 { |
| 16 | + font-family: 'Varela Round', sans-serif; |
| 17 | + font-weight: bold |
| 18 | +} |
| 19 | + |
| 20 | +tt, th, code, kbd, samp, pre { |
| 21 | + font-family: 'Varela Round', sans-serif; |
| 22 | +} |
| 23 | + |
| 24 | +.jumbotron { |
| 25 | + border-radius: 0 !important; |
| 26 | +} |
| 27 | + |
| 28 | +div#tw-content-title-actionbuttons { |
| 29 | + margin-top: 1rem; |
| 30 | +} |
| 31 | + |
| 32 | +div#collapseDescription { |
| 33 | + margin-top: 1.5rem; |
| 34 | +} |
| 35 | + |
| 36 | +@media (min-width: 576px) { |
| 37 | + .jumbotron { |
| 38 | + padding: 2rem 1rem !important; |
| 39 | + } |
| 40 | +} |
| 41 | + |
| 42 | +.footer { |
| 43 | + position: absolute; |
| 44 | + bottom: 0; |
| 45 | + width: 100%; |
| 46 | + /* Set the fixed height of the footer here */ |
| 47 | + /* height: 30px; */ |
| 48 | +} |
| 49 | + |
| 50 | +#taskStateNavigationContainer { |
| 51 | + padding-top: 1rem; |
| 52 | + padding-bottom: 1rem; |
| 53 | +} |
| 54 | + |
| 55 | +.navbar-text-footer { |
| 56 | + display: inline-block; |
| 57 | +} |
| 58 | + |
| 59 | +.navbar-dark .navbar-text-footer { |
| 60 | + color: rgba(255, 255, 255, .5); |
| 61 | +} |
| 62 | + |
| 63 | +.nav-list { |
| 64 | + padding-left: 10px; |
| 65 | +} |
| 66 | + |
| 67 | +#rootCategory { |
| 68 | + padding-left: 0px !important; |
| 69 | +} |
| 70 | + |
| 71 | +#tw-main-section { |
| 72 | + padding-bottom: 1rem !important; |
| 73 | + margin-bottom: 1rem !important; |
| 74 | +} |
| 75 | + |
| 76 | +#user-login-form { |
| 77 | + margin-top: 1rem; |
| 78 | + margin-bottom: 1rem; |
| 79 | +} |
| 80 | + |
| 81 | +#user-login-form-more-information { |
| 82 | + |
| 83 | +} |
| 84 | + |
| 85 | +#newUser2UserMessageForm { |
| 86 | + margin-bottom: 1rem; |
| 87 | +} |
| 88 | + |
| 89 | +#tw-project-submenu-col { |
| 90 | + padding-top: 0.75rem; |
| 91 | +} |
| 92 | + |
| 93 | +#tw-project-submenu-root { |
| 94 | + margin-top: 0.75rem; |
| 95 | +} |
0 commit comments