-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton.css
More file actions
79 lines (73 loc) · 1.3 KB
/
button.css
File metadata and controls
79 lines (73 loc) · 1.3 KB
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
75
76
77
78
79
body {
font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
display: flex;
justify-content: center;
align-items: center;
background-color: aliceblue;
}
.title{
padding: 30px;
margin: 30px 50px;
color: #1da1f2;
text-shadow: 2px 3px black;
font-size: 40px;
}
#container {
text-align: center;
margin: 30px;
width: 50%;
height: 800px;
border-radius: 30px;
}
.container-in{
box-sizing: border-box;
padding: auto;
font-size: 20px;
}
.input-field{
border: 2px solid #1b1b1b;
color: #1b1b1b;
padding: 6px 10px;
width: 70%;
height: 50px;
font: inherit;
text-align: center;
border-radius: 8px;
box-sizing: inherit;
margin: 30px;
}
.radio, .write, .confirm{
padding: 30px 0;
}
.radio{
margin-bottom: -10px;
margin-top: 20px;
}
.confirm{
margin-top: 20px;
}
#retweet, #Like{
margin: 15px;
cursor: pointer;
}
#countPeople{
padding: 8px 32px 8px 38px;
text-align: center;
margin: 16px 0;
font-size: 16px;
font-weight: 200;
}
.btn{
border-color: black;
background-color: aliceblue;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
padding: 15px 32px;
font-size: 16px;
cursor: pointer;
text-transform: uppercase;
font-weight: 200;
margin: 0 10%;
}
.btn:active{
transform: scale(0.98);
}