-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (65 loc) · 1.02 KB
/
style.css
File metadata and controls
74 lines (65 loc) · 1.02 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
body {
background-color: lightblue;
text-align: center;
margin: 0 auto;
font-family: Arial;
}
#title,
#url,
#type {
width: 350px;
height: 20px;
margin-bottom: 10px;
border-color: black;
border-width: 1px;
border-radius: 0px;
background-color: white;
font-size: 17px;
}
#enter {
width: 80px;
height: 30px;
background-color: lightgreen;
margin-bottom: 10px;
border-radius: 0px;
border-color: black;
font-size: 18px;
}
#display {
background-color: white;
width: 1000px;
height: 600px;
}
#bar {
position: fixed;
top: 1;
background-color: blue;
width: 100vw;
height: 40px;
padding: 10px;
color: white;
font-size: 30px;
}
.bottonBar {
text-align: left;
margin: 0 auto;
background-color: white;
width: 1000px;
height: 40px;
}
#open {
margin-left: 10px;
margin-top: 7px;
width: 150px;
height: 25px;
background-color: blue;
color: white;
border-radius: 0px;
border-width: 0px;
}
#open:active {
background-color: deepskyblue;
}
input:focus {
outline: none;
}