-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
85 lines (75 loc) · 1.47 KB
/
styles.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
body{
box-sizing: border-box;
margin: 0;
background-color: black;
background-image: url('images/peakpx.png');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
overflow-x: hidden;
color: white;
max-height: 100vh;
overflow-y: scroll;
/*font-size: calc(0.75em + 1vmin);*/
font-size: calc(14px + 0.390625vw);
font-family: 'Montserrat', sans-serif
}
.headline {
padding: 2% 0%;
margin:0 1% 0% 1% ;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
h1{
text-align: center;
font-size: 3rem;
}
.enter-data{
padding: 3% 10%;
}
.form-btn{
text-align: center;
padding: 5% 5% 2% 5%;
}
.form-btn .btn{
padding: 1% 3%;
font-family: 'Karla', sans-serif;
}
.total-section{
text-align: center;
}
.filter{
padding: 3% 10%;
}
.filter .row .fill{
margin: 0 auto;
}
#filter-form .fill .btn{
padding: 4% 12%;
font-family: 'Karla', sans-serif;
}
.results {
padding: 5% 10%;
}
.results td,th{
color: white;
}
#updatebtn{
padding:7px 15px;
margin:4px 6px;
cursor: pointer;
border:none;
background-color: green;
border-radius: 15px;
color: white;
font-size: calc(10px + 0.390625vw);
}
#deletebtn{
padding:7px 15px;
margin:4px 6px;
cursor: pointer;
border:none;
background-color: red;
border-radius: 15px;
color: white;
font-size: calc(10px + 0.390625vw);
}