Skip to content

Commit a61d00d

Browse files
authored
Create style.css
1 parent 475f326 commit a61d00d

1 file changed

Lines changed: 75 additions & 0 deletions

File tree

style.css

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

0 commit comments

Comments
 (0)