-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (74 loc) · 1.14 KB
/
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
h1 {
color: red;
}
h1 {
font-style: oblique;
}
p{ font-style: italic;
}
h2{
font-style: italic;
}
h2{
color:blue;
}
p{
font-style:italic;
}
table{
border-color: rgb(74, 0, 97);
}
body{
display: flex;
flex-direction: column;
background-color: rgb(42, 165, 83);
}
p{
color: aqua;
}
p1{
color: aqua;
}
td{
color: rgb(255, 255, 255);
transition: width 2s;
}
li{
color: aliceblue;
}
a{
color: azure;
}
hover{
color: red;
}
.container .items{
font-size: 2rem;
font-weight: bold;
width: 350px;
height: 100px;
background-color: aqua;
margin-top: 1%;
margin-bottom: 1%;
}
.container:hover::before {
opacity: 1;
}
.container::before {
content: "KLIK DISINI YA!!!";
position: inherit;
top: 10;
left: 10;
width: 100%;
height: 100%;
padding: 5px;|
margin: 10px;
background-color: #e74c3c;
opacity: 0;
transition: opacity 0.5s ease-in-out;
}
.items:hover{
background-color: #e74c3c;
font-size: 50px;
transition-duration: 2s;
}