The LM Control website. Simple yet efficient.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

main.css 6.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. :root {
  2. --lm-color: #309d66;
  3. --card-height: 550px;
  4. --cool-looking-gradient: linear-gradient(to right, #3ad559 0%, #606dc2 100%);
  5. }
  6. html, body {
  7. font-size: 13.5pt;
  8. font-family: 'Roboto', sans-serif;
  9. margin: 0;
  10. background-color: #dfdfdf;
  11. }
  12. #quickContactBar{
  13. width: 100%;
  14. height: 35px;
  15. background-color: #333;
  16. }
  17. nav {
  18. display: flex;
  19. flex-direction: row;
  20. justify-content: start;
  21. height: 100px;
  22. width: 100%;
  23. border-bottom: 1px solid rgba(255,255,255,.15);
  24. font-size: 22px;
  25. user-select: none;
  26. z-index: 1;
  27. background: rgba(0,0,0,.75);
  28. box-shadow: inset 0 -2px 5px rgba(0,0,0,.5);
  29. }
  30. nav .logo {
  31. height: 100%;
  32. width: 300px;
  33. margin-left: 40px;
  34. }
  35. nav .links {
  36. margin-left: auto;
  37. margin-right: 60px;
  38. display: flex;
  39. flex-direction: row;
  40. justify-content: space-between;
  41. width: 400px;
  42. }
  43. nav .links a {
  44. font-size: 18px;
  45. font-weight: 700;
  46. letter-spacing: normal;
  47. line-height: 100px;
  48. text-align: center;
  49. color: #ffffff;
  50. text-decoration: none;
  51. transition: color 100ms;
  52. position: relative;
  53. }
  54. nav .links a:before, a:after {
  55. content: "";
  56. position: absolute;
  57. bottom: 2px;
  58. left: 0;
  59. right: 0;
  60. height: 2px;
  61. background-color: #7df372;
  62. }
  63. nav .links a:before {
  64. opacity: 0;
  65. transform: translateY(-8px);
  66. transition: transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0s;
  67. }
  68. nav .links a:after {
  69. opacity: 0;
  70. transform: translateY(4px);
  71. transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s;
  72. }
  73. nav .links a:hover:before, a:hover:after, a:focus:before, a:focus:after {
  74. opacity: 1;
  75. transform: translateY(0);
  76. }
  77. nav .links a:hover:before, a:focus:before {
  78. transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s;
  79. }
  80. nav .links a:hover:after, a:focus:after {
  81. transition: transform 0s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0s 0.2s;
  82. }
  83. #wrapper{
  84. width: 100%;
  85. display: flex;
  86. overflow: auto;
  87. flex-direction: column;
  88. }
  89. #banner {
  90. flex-shrink: 0;
  91. display: flex;
  92. flex-direction: column;
  93. height: 550px;
  94. width: 100%;
  95. background-image: url('../imgs/22.JPG');
  96. background-repeat: no-repeat;
  97. background-position: 0 -295px;
  98. background-size: 100% auto;
  99. }
  100. .banner-container{
  101. display: flex;
  102. height: 240px;
  103. margin: auto 0 auto 0;
  104. flex-direction: column;
  105. justify-content: center;
  106. margin-left: 200px;
  107. width: 650px;
  108. color: rgb(255, 255, 255);
  109. font-family: 'Source Sans Pro', sans-serif;
  110. border-style: solid;
  111. border-color: #ffffff;
  112. border-left-width: 0;
  113. border-right-width: 0;
  114. border-top-width: 1px;
  115. border-bottom-width: 1px;
  116. padding: 20px;
  117. background: rgba(0,0,0,.75);
  118. box-shadow: inset 0 -2px 5px rgba(0,0,0,.33);
  119. }
  120. .banner-container .header{
  121. font-size: 15px;
  122. }
  123. .banner-container .title{
  124. font-size: 40px;
  125. font-weight: 500;
  126. }
  127. .banner-container .buttons{
  128. display: flex;
  129. flex-direction: row;
  130. font-size: 40px;
  131. font-weight: 500;
  132. align-self: flex-end;
  133. }
  134. .banner-container button {
  135. font-family: inherit;
  136. border: none;
  137. margin: 0 0 0 5px;
  138. text-decoration: none;
  139. background: none;
  140. color: #ffffff;
  141. font-size: 25px;
  142. cursor: pointer;
  143. text-align: center;
  144. line-height: 1.1;
  145. transition: 220ms all ease-in-out;
  146. border-style: solid;
  147. border-color: #717171;
  148. border-width: 1px;
  149. padding: 0.25em 0.75em;
  150. min-width: 10ch;
  151. min-height: 44px;
  152. }
  153. .banner-container button.highlight{
  154. background: #309d6691;
  155. }
  156. .banner-container button:hover,
  157. .banner-container button:focus {
  158. background: var(--lm-color);
  159. }
  160. .banner-container button:focus {
  161. outline: 1px solid #fff;
  162. outline-offset: -4px;
  163. }
  164. .banner-container button:active {
  165. transform: scale(0.99);
  166. }
  167. .container{
  168. flex-shrink: 0;
  169. width: 100%;
  170. display: flex;
  171. flex-direction: column;
  172. justify-content: center;
  173. align-items: center;
  174. }
  175. .info-cards{
  176. max-width: 1280px;
  177. min-height: 500px;
  178. background: rgba(255, 255, 255, 0.92);
  179. margin-top: -50px;
  180. display: flex;
  181. flex-direction: row;
  182. border-radius: 20px;
  183. }
  184. .card{
  185. flex-shrink: 0;
  186. flex-grow: 1;
  187. display: flex;
  188. flex-direction: column;
  189. width: 318px;
  190. align-items: center;
  191. }
  192. .card.boarder{
  193. border-right-style: solid;
  194. border-color: #d9d9d9;
  195. border-width: 1px;
  196. }
  197. .card .icon {
  198. flex-shrink: 0;
  199. color: var(--lm-color);
  200. color: rgb(255, 118, 7);
  201. margin-top: 50px;
  202. width: 70px;
  203. height: 70px;
  204. stroke: currentColor;
  205. stroke-width: 1;
  206. stroke-linecap: round;
  207. stroke-linejoin: round;
  208. fill: none;
  209. }
  210. .card .title{
  211. flex-shrink: 0;
  212. font-family: "Rubik", sans-serif;
  213. font-size: 21px;
  214. font-weight: 500;
  215. color: rgb(27, 26, 26);
  216. }
  217. .card p {
  218. font-family: "Roboto", sans-serif;
  219. font-weight: 400;
  220. color: rgb(81, 80, 80);
  221. margin: 20px;
  222. font-size: 14px;
  223. word-wrap: normal;
  224. line-height: 24px;
  225. text-align: center;
  226. }
  227. .coolLookingBox {
  228. background-color: #f5f5f5;
  229. background-image: linear-gradient(to bottom,#ffffff,#e6e6e6);
  230. background-repeat: repeat-x;
  231. border: 1px solid #cccccc;
  232. border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  233. border-color: rgba(0, 0, 0, 0.1)
  234. rgba(0, 0, 0, 0.1)
  235. rgba(0, 0, 0, 0.25);
  236. border-bottom-color: #b3b3b3;
  237. border-radius: 4px;
  238. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
  239. 0 1px 2px rgba(0, 0, 0, 0.05);
  240. color: #333;
  241. display: block;
  242. font-size: 125%;
  243. font-style: normal;
  244. line-height: 20px;
  245. margin: 20px 0 0;
  246. padding: 10px 20px;
  247. text-align: center;
  248. text-decoration: none;
  249. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  250. }
  251. .coolLookingBox.mobile:before {
  252. content: 'Mobile: ';
  253. font-weight: bold;
  254. }
  255. .coolLookingBox.landline:before {
  256. content: 'Landline: ';
  257. font-weight: bold;
  258. }
  259. .coolLookingBox.email:before {
  260. content: 'E-Mail: ';
  261. font-weight: bold;
  262. }
  263. #map {
  264. height: 450px;
  265. width: 100%;
  266. margin: auto;
  267. }
  268. @media screen and (max-width: 1200px) {
  269. nav .blank {
  270. display: none;
  271. }
  272. }
  273. @media screen and (max-width: 1000px) {
  274. #content #banner #quickInfo{
  275. display: none;
  276. }
  277. }
  278. @media screen and (max-width: 730px) {
  279. nav {
  280. height: auto;
  281. flex-direction: column;
  282. position: relative;
  283. }
  284. nav .logo {
  285. margin: auto;
  286. background-position: center;
  287. height: 65px;
  288. }
  289. nav .blank {
  290. display: none;
  291. }
  292. }
  293. @media screen and (max-width: 320px) {
  294. nav .links {
  295. flex-direction: column;
  296. }
  297. }