-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (44 loc) · 738 Bytes
/
style.css
File metadata and controls
56 lines (44 loc) · 738 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
*{ text-align: center;
padding: 0;
font-family: 'Poppins', sans-serif;
list-style: none;
}
a{
text-decoration: none;
color: inherit;
}
.heading{
font-size: 24px;
padding: 5px;
border-radius: 5px;
background: red;
color: black;
}
.ishita{
font-size: 30px;
color: darkblue;
}
button{
margin-bottom: 10px;
margin-top: 50px;
padding: 25px;
font-size: 20px;
background-color: #0a010592;
color: white;
border-radius: 30px;
font-weight: 700;
}
button:hover{
color: #001965;
background-color: #fff;
border: 3px solid #001965;
font-weight: 700;
}
#b1{
margin-right: 50px;
width: 300px;
}
#b2{
margin-left: 50px;
width: 300px;
}