-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (64 loc) · 929 Bytes
/
Copy pathstyle.css
File metadata and controls
65 lines (64 loc) · 929 Bytes
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
h1 {
color: green;
text-align: center;
font-size: 50px;
}
h3 {
text-align: center;
font-size: 30px;
color: #0000af;
}
p {
text-align: center;
}
.cv {
border: 3px solid #4caf50;
height: 300px;
}
.btn {
cursor: pointer;
margin: 2px;
font-size: 20px;
border-radius: 8px;
background-color: white;
transition-duration: 0.5s;
}
#red {
border: 3px solid red;
}
#red:hover {
background-color: red;
color: white;
}
#gray {
border: 3px solid gray;
}
#gray:hover {
background-color: gray;
color: white;
}
#blur {
border: 3px solid #fffffa;
}
#blur:hover {
background-image: linear-gradient(gray, white);
color: black;
}
#rainbow {
border: none;
}
#rainbow:hover {
background-image: linear-gradient(red, orange, green, blue);
}
#download:hover {
background-color: #1E90FF
}
#rst:hover {
background-color: #e7e7e7;
}
body {
background-color: #ffffcc;
}
div {
text-align: center;
}