-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
67 lines (57 loc) · 1.05 KB
/
index.css
File metadata and controls
67 lines (57 loc) · 1.05 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
:root {
--dark: #20232F;
--blue: #2365A8;
--orange: #D56031;
--white: #E7E0D7;
--green: #32B777;
--pink: #FA3D56;
--violet: #D452FD;
}
* {
margin: 0;
padding: 0;
}
a {
color: inherit;
}
a:hover {
color: inherit;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: var(--dark);
color: var(--white);
}
button {
height: 35px;
width: 160px;
margin: 2px 3px;
border: none;
outline: none;
font-size: 16px;
background-color: transparent;
box-shadow: -1px -1px 3px rgba(255, 255, 255, 0.1),
1px 1px 3px rgba(0, 0, 0, 0.8);
border-radius: 10px;
cursor: pointer;
width: 16%;
min-width: 130px;
}
button:focus {
outline: none;
}
.alert_c {
background-color: var(--pink);
padding: 1%;
margin: 3% 1%;
border-radius: 5px;
}
@media (max-width:1160px) {
.app {
flex-direction: column;
}
}