-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.css
69 lines (60 loc) · 1.18 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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
html,
body {
margin-top: 4%;
font-family: 'Poppins', sans-serif;
color: white;
/* Change to blue for debugging to see if the bg is visible between the webview and the deviceImg */
background-color: rgb(67, 67, 67);
text-align: center;
overflow: hidden;
}
#openPhonesButton,
#openTabletsButton,
#openLaptopsButton,
#openCustomButton {
width: 22%;
display: inline-flex;
margin: 6px;
border: none;
background-color: rgb(76, 77, 76);
color: white;
padding: 40px;
border-radius: 10px;
justify-content: center;
font-size: 28px;
outline: none;
}
#openPhonesButton:hover,
#openTabletsButton:hover,
#openLaptopsButton:hover,
#openCustomButton:hover {
background-color: rgb(95, 95, 95);
}
h1 {
font-size: 70px;
}
h2 {
font-size: 50px;
margin-bottom: 60px;
}
#credits {
font-size: 30px;
position: absolute;
bottom: 10px;
left: 50px;
}
#update {
padding: 30px;
font-size: 30px;
}
a:link {
color: rgb(0, 187, 255);
background-color: transparent;
text-decoration: none;
}
a:visited {
color: rgb(0, 187, 255);
background-color: transparent;
text-decoration: none;
}