-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (95 loc) · 1.96 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Permanent+Marker&family=Righteous&display=swap');
.body {
margin: 0px;
padding: 0px;
background: rgb(36, 36, 36);
transition: .4s all ease-in;
}
.div1 {
background: rgb(56, 56, 56);
}
.h1 {
color: rgb(255, 77, 77);
font-size: 80px;
font-family: 'Righteous', cursive;
text-align: center;
margin: 0px;
}
.h2 {
color: rgb(255, 130, 130);
font-size: 30px;
font-family: 'Righteous', cursive;
text-align: center;
margin: 0px;
}
.div2 {
text-align: center;
}
.profile {
width: 200px;
height: 200px;
border-radius: 100px;
display: block;
margin-left: auto;
margin-right: auto;
filter: grayscale();
transition: .3s ease-in-out;
}
.h3 {
font-family: 'Righteous', cursive;
color: rgb(255, 94, 94);
size: 20px;
margin: 0px;
list-style-type: none;
text-align: center;
}
.hobbyimg {
display: block;
margin-left: auto;
margin-right: auto;
width: 200px;
height: 200px;
filter: grayscale();
transition: .3s ease-in-out;
}
button {
border: none;
font-family: 'Righteous', cursive;
background-color: rgb(196, 196, 196);
color: rgb(46, 46, 46);
font-size: 30px;
border-radius: 10px;
transition: .4s;
}
button:hover {
background-color: rgb(255, 86, 86);
color: rgb(214, 214, 214);
}
button:focus {
background-color: rgb(245, 0, 0);
color: rgb(255, 255, 255);
}
.button2 {
border: none;
font-family: 'Righteous', cursive;
background-color: rgb(99, 99, 99);
color: rgb(255, 61, 61);
font-size: 30px;
border-radius: 10px;
transition: .4s;
}
.button2:hover {
background-color: rgb(255, 86, 86);
color: rgb(214, 214, 214);
}
.button2:focus {
background-color: rgb(245, 0, 0);
color: rgb(255, 255, 255);
}
.profile:hover {
border-radius: 100px;
filter: none;
}
.hobbyimg:hover {
filter: none;
}