forked from robisim74/qwik-speak
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
58 lines (50 loc) · 886 Bytes
/
global.css
File metadata and controls
58 lines (50 loc) · 886 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
body {
font-family: Arial, sans-serif;
font-size: 14px;
background-color: #f2f2f2;
}
main {
margin: 0 auto;
padding: 10px 10px 50px 10px;
background-color: #fff;
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
display: flex;
flex-direction: column;
border-radius: 6px;
}
main .content {
padding: 10px;
text-align: center;
}
button {
display: inline-block;
padding: 5px 10px;
margin: 5px 10px;
border-radius: 5px;
border-width: 1px;
background-color: #fff;
font-size: 14px;
text-decoration: none;
}
button:hover {
background-color: #f2f2f2;
cursor: pointer;
}
@media (min-width: 768px) {
body {
font-size: 16px;
}
main {
max-width: 1000px;
padding: 20px;
}
main .content {
padding: 20px 70px;
}
button {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
text-decoration: none;
}
}