-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle3.css
More file actions
39 lines (37 loc) · 793 Bytes
/
style3.css
File metadata and controls
39 lines (37 loc) · 793 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
div{
height: 200px;
width: 500px;
background-color:pink;
border: 5px solid black;
border-radius: 10px;
border-bottom-right-radius: 15px;
padding-top: 50px;
margin-bottom: 20px;
margin-left: 40px;
}
/*
border-width: 5px;
border-color: black;
border-style: solid;
*/
h1{
border: 4px dashed indigo;
margin-bottom: 20px;
margin-left: 40px;
}
button{
font-weight: bold;
border: 3px solid black;
border-radius: 20px;
/* padding-left: 20px;
padding-right: 20px;
padding-top:8px;
padding-bottom: 8px;
padding: 60px;
padding: 10px 20px;
padding: 2px 10px 2px;
*/
padding: 0px 10px 0px 10px;
background-color: yellow;
margin-left: 40px;
}