borderTemplate.vue 420 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="border-box-style">
  3. </div>
  4. </template>
  5. <script>
  6. export default {
  7. name: "borderTemplate"
  8. }
  9. </script>
  10. <style scoped>
  11. .border-box-style{
  12. width: 290px;
  13. height: 240px;
  14. background: linear-gradient( 180deg, #00244D 0%, #001E41 100%);
  15. box-shadow: 0px 2px 4px 1px rgba(0,0,0,0.15);
  16. border-radius: 4px 4px 4px 4px;
  17. border: 2px solid #3D73BA;
  18. opacity: 0.8;
  19. }
  20. </style>