Advertisement
Guest User

Untitled

a guest
Dec 15th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. import React, { Component } from 'react';
  2. import logo from './logo.svg';
  3. import './App.css';
  4.  
  5. import React from 'react'
  6. import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
  7.  
  8. class user_page extends Component {
  9. render() {
  10. return (
  11. <div className="App">
  12. <div className="container">
  13. <div className="row">
  14. <div className="col-lg-8 mx-auto">
  15.  
  16. <p></p>
  17. <label style={{font-family: Arial; font-size: 20px; color: #7C7C7C; margin-top: 110px}} className="">Procura algum produto em especial?</label>
  18. <p></p>
  19. <input type="search" style={{background-color: #E5E3E3; border-radius: 15px; max-width: 300px; font-family: Arial}} className="form-control mx-auto" id="input_pag_pesquisa" placeholder="Pesquisar">
  20. <small style={{font-family: Arial; font-size: 10px; color: #7C7C7C}} className="">Exemplo: telemóvel.</small>
  21. <br>
  22. <br>
  23. <label style={{font-family: Arial; font-size: 10px; color: white; opacity: 41%; background-color: #7B9BA6; border-radius: 5px; padding: 30px}} className="mt-5">Não encontrou o que procurava? <br> Fale connosco! <br> Envie um email para: wishitapp@wish.com</label>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. );
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement