-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (65 loc) · 1.23 KB
/
style.css
File metadata and controls
75 lines (65 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f0f0;
}
.browser-container {
display: flex;
flex-direction: column;
height: 100vh;
background-color: white;
}
/* Header */
.header {
background: linear-gradient(135deg, #4CAF50, #45a049);
color: white;
padding: 15px;
text-align: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header h1 {
font-size: 24px;
}
/* Navigation Bar */
.navbar {
display: flex;
gap: 10px;
padding: 10px;
background-color: #e8f5e9;
border-bottom: 1px solid #ddd;
align-items: center;
}
.navbar button {
padding: 8px 15px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
transition: background-color 0.3s;
}
.navbar button:hover {
background-color: #45a049;
}
.navbar input {
flex: 1;
padding: 8px 12px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 14px;
}
/* Browser Content Area */
.browser-content {
flex: 1;
overflow: hidden;
}
#browser-frame {
width: 100%;
height: 100%;
border: none;
}