-
Notifications
You must be signed in to change notification settings - Fork 13
/
action_style.css
63 lines (52 loc) · 997 Bytes
/
action_style.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
body {
background-color: #FAFAFA;
}
.flex-container {
display: -webkit-flex;
display: flex;
flex-direction: column;
margin-left: 256px;
width: auto;
height: auto;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
background-color: #FAFAFA;
}
.flex-item {
display: -webkit-flex;
display: flex;
background-color: #FAFAFA;
width: auto;
height: auto;
margin: 10px;
}
@media screen and (max-width: 855px)
{
.flex-container {
margin: auto;
}
}
p[id="info"] {
font-size: 24px;
margin-left: 20px;
margin-right: 20px;
font-family: Roboto-Regular;
}
.button {
background-color: #4CAF50;
border: none;
color: white;
font-family: OpenSans-Bold;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
margin-left: 20px;
margin-right: 20px;
cursor: pointer;
border-radius: 3px;
}
.button:hover {
opacity: 0.8;
}