-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
74 lines (59 loc) · 847 Bytes
/
styles.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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
html{
font-size: 25px;
background-color: rgb(44, 43, 43);
background-size: 100% 100%;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color:white;
}
body{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: 50px;
}
.btn{
margin: 50px;
width: 250px;
height: 250px;
border-radius: 50%;
outline: none;
}
.btn:hover{
transform: scale(1.3);
}
img{
width: 250px;
height: 250px;
}
.text-line{
display: flex;
flex-direction: row;
font-size: 30px;
}
.text{
margin: 50px;
}
#output{
font-size: 35px;
font-style:italic;
}
a{
text-decoration: none;
color: white;
}
a:hover{
text-decoration: underline;
}
h1 {
font-style:italic;
}
h2{
font-size: 30px;
color:hotpink;
}