-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
58 lines (45 loc) · 774 Bytes
/
styles.css
File metadata and controls
58 lines (45 loc) · 774 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
57
58
.text{
margin-left: 100px;
margin-top: 50px;
}
h1{
font-size: 70px;
}
#inp{
height: 40px;
width: 300px;
border-radius: 5px;
border:3px solid black;
}
#btn{
background: blueviolet;
height: 50px;
width: 100px;
border-radius: 10px;
border-style: none;
color: white;
outline: none;
}
.show{
margin-left: 200px;
}
#btn:hover{
transform: scale(1.1);
opacity: 100%;
}
li{
display: inline-block;
line-height: 40px;
}
a{
color:rgb(0, 0, 0);
font-size:25px;
padding: 7px 13px;
border-radius: 3px;
text-decoration: none;
margin: 20px;
}
a:hover{
background: rgb(76, 156, 202);
transition: .5s;
}