-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (53 loc) · 892 Bytes
/
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
body{
background-color:black;
height:100%;
}
.wrapper{
width:1000px;
text-align: center;
/* border:2px solid red; */
margin : 20px auto;
padding-bottom: 20px;
;}
.circle{
height :200px;
width:200px;
border-radius : 100%;
border : 3px solid white;
margin-left: 400px;
margin-bottom: 60px;
}
h1{
color:white;
padding:20px;
}
.one{
color:blue;
font-size:50px;
}
.two{
color:blue;
margin-top:40px;
font-size:40px;
}
.three{
color:orange;
font-size:50px;
margin-left:10px;
}
p{
color:blue;
}
button{
font-size:20px;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
/* font-weight:300; */
color:white;
cursor:pointer;
border:2px solid white;
width:180px;
padding:10px;
background-color: black;
border-radius:10px;
margin:10px
}