├── logo.png ├── favicon.ico ├── logo-agcom.png ├── README.md ├── index.html └── assets └── index-c4c106cb.css /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuckpiracyshield/frontend/HEAD/logo.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuckpiracyshield/frontend/HEAD/favicon.ico -------------------------------------------------------------------------------- /logo-agcom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuckpiracyshield/frontend/HEAD/logo-agcom.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Piracy Shield Frontend 2 | 3 | Unfortunately no source code here... Just the compiled version of the frontend available from the VPN. -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Piracy Shield - AGCOM 11 | 12 | 13 | 14 | 15 | 16 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /assets/index-c4c106cb.css: -------------------------------------------------------------------------------- 1 | @import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap"; 2 | body { 3 | margin: 0; 4 | } 5 | .site-layout-content { 6 | min-height: 280px; 7 | } 8 | .logo { 9 | float: left; 10 | margin-left: 40px; 11 | width: 120px; 12 | height: 100%; 13 | line-height: 100%; 14 | } 15 | .logo img { 16 | margin-top: 11px; 17 | } 18 | .content-header { 19 | padding-top: 60px; 20 | padding-bottom: 50px; 21 | } 22 | .content-sub-header { 23 | padding-top: 1px; 24 | padding-bottom: 20px; 25 | } 26 | .date-display { 27 | font-family: Inter, sans-serif; 28 | text-transform: uppercase; 29 | font-size: 12px; 30 | } 31 | .global-description { 32 | color: #00000078; 33 | } 34 | .global-section { 35 | text-transform: uppercase; 36 | letter-spacing: 1px; 37 | font-size: 11px; 38 | font-family: Inter, sans-serif; 39 | font-weight: 500; 40 | color: #00000078; 41 | } 42 | .ant-layout-sider { 43 | flex: 0 0 240px !important; 44 | max-width: 240px !important; 45 | min-width: 240px !important; 46 | width: 240px !important; 47 | } 48 | .ant-menu-light { 49 | background: none; 50 | } 51 | .ant-menu-light.ant-menu-root.ant-menu-inline { 52 | border-inline-end: none; 53 | } 54 | .ant-menu .ant-menu-item-group-title { 55 | margin-top: 30px; 56 | text-transform: uppercase; 57 | letter-spacing: 1px; 58 | font-size: 11px; 59 | font-family: Inter, sans-serif; 60 | font-weight: 500; 61 | } 62 | .ant-menu-item.ant-menu-item-selected { 63 | background-color: #95959521; 64 | } 65 | .ant-table-thead th.ant-table-cell, 66 | thead.ant-table-thead tr td.ant-table-cell { 67 | background: none !important; 68 | border: none !important; 69 | text-transform: uppercase; 70 | letter-spacing: 1px; 71 | font-size: 11px; 72 | font-family: Inter, sans-serif; 73 | font-weight: 500; 74 | color: #00000078 !important; 75 | } 76 | button.ant-btn span { 77 | font-family: Inter, sans-serif; 78 | text-transform: uppercase; 79 | font-size: 12px; 80 | font-weight: 500; 81 | } 82 | .ant-tag { 83 | text-transform: uppercase; 84 | letter-spacing: 1px; 85 | font-size: 11px; 86 | font-family: Inter, sans-serif; 87 | } 88 | .form-description { 89 | color: #00000078; 90 | } 91 | .ant-tabs .ant-tabs-tab + .ant-tabs-tab { 92 | margin: 0 0 0 50px; 93 | } 94 | --------------------------------------------------------------------------------