| 1234567891011121314151617181920212223 |
- <template>
- <div class="border-box-style">
- </div>
- </template>
- <script>
- export default {
- name: "borderTemplate"
- }
- </script>
- <style scoped>
- .border-box-style{
- width: 290px;
- height: 240px;
- background: linear-gradient( 180deg, #00244D 0%, #001E41 100%);
- box-shadow: 0px 2px 4px 1px rgba(0,0,0,0.15);
- border-radius: 4px 4px 4px 4px;
- border: 2px solid #3D73BA;
- opacity: 0.8;
- }
- </style>
|