-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (47 loc) · 939 Bytes
/
style.css
File metadata and controls
52 lines (47 loc) · 939 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
@charset "UTF-8";
@media screen and (max-width: 600px) {
a{
display: block;
margin: 20px 20% 0px 20%;
}
}
*{
margin: 0px;
padding: 0px;
}
body {
background-image: linear-gradient(to right, rgb(172, 90, 205), slateblue, rgb(90, 130, 205));
font-family: 'Trebuchet MS';
}
h1 {
font-size: 18px;
color: white;
margin-bottom: 50px;
margin-top: 20px;
text-align: center;
}
img {
width: 150px;
display: block;
margin: 0 auto;
border-radius: 50%;
padding-top: 10px;
}
a{
display: block;
text-align: center;
background-color: white;
color: black;
text-decoration: none;
margin-top: 20px;
margin-left: 30%;
margin-right: 30%;
padding: 10px;
border-radius: 20px;
}
a:hover{
background-color: rgba(255, 255, 255, 0.541);
cursor: pointer;
text-decoration: underline;
color: rgb(68, 11, 202);
}