forked from ironprogrammers/Web-Dev-Teaching
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
74 lines (70 loc) · 1.13 KB
/
index.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;
}
body{
font-family: sans-serif;
text-align: center;
}
h1{
margin-top:20px;
}
.first{
display:flex;
margin:auto;
margin-top:100px;
margin-bottom:20px;
align-items: center;
justify-content: center;
flex-direction: column;
}
.each-block{
display: inline-block;
padding:10px 40px;
color:#fff;
margin-right:10px;
background-color:#0080ff;
}
#div1 {
width: 350px;
height: 70px;
padding: 10px;
border: 1px solid #aaaaaa;
}
.container{
display:flex;
align-items: center;
justify-content: center;
padding-left:10px;
width:100px;
height:50px;
border:3px dotted #ccc;
}
.container-each{
display:flex;
flex-direction: column;
}
.container-each p{
display: none;
}
button{
border:0px;
background-color:#0080ff;
padding:10px 15px;
color:#fff;
letter-spacing: 1px;
cursor: pointer;
box-shadow: 10px 20px 30px #ccc;
}
button:focus{
box-shadow: 0px 0px 0px #ccc;
}
button:focus{
outline:0;
}
.button-holder{
margin-top:40px;
}
.each-block p{
display: inline;
}