Untitled

 avatar
unknown
plain_text
a year ago
3.4 kB
12
Indexable
<!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Auto-Fetch CPC Data Visualization</title>
    <style>
        body { 
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
            margin: 20px;
            background-color: #f8f9fa;
        }

```
    .container {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .header {
        text-align: center;
        margin-bottom: 30px;
        padding: 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .header h1 {
        margin: 0;
        font-size: 2.5em;
        font-weight: 300;
    }
    
    .header p {
        margin: 10px 0 0 0;
        opacity: 0.9;
        font-size: 1.1em;
    }
    
    .fetch-panel {
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        margin-bottom: 30px;
    }
    
    .fetch-title {
        font-size: 1.4em;
        font-weight: 600;
        margin-bottom: 20px;
        color: #333;
        text-align: center;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 10px;
    }
    
    .url-input-group {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    
    .url-input {
        flex: 1;
        min-width: 300px;
        padding: 15px;
        border: 2px solid #ddd;
        border-radius: 10px;
        font-size: 16px;
        transition: border-color 0.3s;
    }
    
    .url-input:focus {
        border-color: #667eea;
        outline: none;
    }
    
    .auto-fetch-btn {
        padding: 15px 30px;
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-weight: bold;
        font-size: 16px;
        transition: transform 0.2s;
    }
    
    .auto-fetch-btn:hover {
        transform: translateY(-2px);
    }
    
    .proxy-buttons {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .proxy-btn {
        padding: 10px 15px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 13px;
        font-weight: 500;
        color: white;
        transition: all 0.3s;
    }
    
    .proxy-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    
    .allorigins { background: #6f42c1; }
    .corsproxy { background: #17a2b8; }
    .thingproxy { background: #fd7e14; }
    .heroku-proxy { background: #e83e8c; }
    .jsonp { background: #28a745; }
    
    .status-display {
        min-height: 50px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .manual-section {
        background: linear-gradient(135deg, #fff3cd 0%, #fef7e0 100%);
        padding: 20px;
        border-radius: 10px;
        border-left: 5px solid #ffc107;
        margin-top: 20
```
Editor is loading...
Leave a Comment