-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (55 loc) · 910 Bytes
/
style.css
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
#image {
float: left;
height:250px;
width: 200px;
}
body {
background-color: lightgrey;
}
form {
background-color: lightcyan;
position: relative;
}
#para {
width: 350px;
border: 2px solid black;
color: red;
font-size: 20px;
margin-right: 600px;
position: absolute;
top:100px;
right: -250px;
}
#myDiv{
background-color: lightyellow;
font-family: 'Times New Roman', Times, serif;
font-size: x-large;
color: black;
width: 600px;
height: 230px;
border: 2px solid black;
text-align: center;
position:absolute;
top: 20px;
right: 300px;
z-index: 1;
}
#myDiv p{
font-size: 20px;
}
#ld{
color: red;
font-family:'Times New Roman', Times, serif;
font-size: xx-large;
font:bolder;
font:italic;
}
button{
cursor: pointer;
}
.hide{
display: none;
}
.show{
display: inline-block;
}