-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_2.css
85 lines (83 loc) · 1.31 KB
/
style_2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
body
{
background-image: url(Background.jpeg);
background-repeat: no-repeat;
background-size: cover;
text-align: center;
}
h1
{
text-decoration-line: underline;
text-align: center;
font-size: xx-large;
}
h2
{
text-align: center;
text-transform: uppercase;
font-size: x-large;
}
.box
{
text-align: center;
width: 300px;
padding: 7px;
font-weight: bold;
font-size: 98%;
margin-top:4px;
background-color: transparent;
border-bottom-right-radius: 70px;
border-top-left-radius: 70px;
}
.box:focus
{
background-color: beige;
}
b
{
font-size: x-large;
}
.ratings
{
text-decoration:underline;
}
.separator
{
margin-left: 40%;
margin-right: 40%;
border: solid rgb(149, 204, 238);
}
.section
{
margin-left:30%;
margin-right:30%;
border:solid rgb(149, 204, 238);
}
#add
{
font-size: 95%;
}
label
{
font-weight: bold;
font-size: large;
}
button
{
border-radius: 10px;
height: 40px;
width: 120px;
font-size: x-large;
font-style: italic;
font-weight: bold;
}
button:hover
{
background-color: bisque;
}
button:active
{
background-color: burlywood;
box-shadow: 4px;
transform: translateY(3px);
}