-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (76 loc) · 1.46 KB
/
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* ROBOT.GIF from Giphy - https://giphy.com/gifs/robot-cinema-4d-eyedesyn-3o7abtn7DuREEpsyWY */
* {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: #e2e8f0;
}
.container {
width: 100vw;
padding: 5px;
text-align: center;
}
.head {
margin: 1rem;
}
.head img {
width: 250px;
}
#footer {
position: fixed;
left: 50%;
bottom: 0;
transform: translateX(-50%);
margin: .8rem auto;
}
.btn-wrapper {
margin: 0 auto;
}
button {
cursor: pointer;
outline: none;
width: 50px;
height: 50px;
display: inline-flex;
justify-content: center;
align-items: center;
color: #2b6cb0;
background: white;
border: none;
border-radius: 99px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
button:hover {
background: #2b6cb0;
color: white;
}
button:active {
transform: scale(0.98);
}
button:disabled {
cursor: default;
filter: brightness(30%);
}
#text {
display: inline-block;
background: white;
color: #111111;
padding: 5px 10px;
margin: 1rem auto 70px;
max-width: 60%;
font-size: 24px;
border-radius: .8rem;
}
/* Media Query: Tablet or Smaller */
@media screen and (max-width: 750px) {
.container {
background-position: center center;
background-size: cover;
}
#text {
width: 80%;
}
}