-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
127 lines (109 loc) · 2.58 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
body{
box-sizing: border-box;
margin: 0;
padding: 0;
background-image: url('images/peakpx.jpg');
}
h1{
text-align: center;
font-family: 'Open Sans', sans-serif;
margin: 0;
}
#add-records{
padding: 4% 5%;
font-family: 'Open Sans', sans-serif;
color: white;
font-size: 1.3rem;
}
#submit-form{
border-radius: 45px;
box-shadow: 0px 0px 41px -9px rgba(0,0,0,0.69);
-webkit-box-shadow: 0px 0px 41px -9px rgba(0,0,0,0.69);
-moz-box-shadow: 0px 0px 41px -9px rgba(0,0,0,0.69);
padding: 3%;
}
#add-records button{
margin-top: 6%;
}
.addNote {
background-image: linear-gradient(to right, #56CCF2 0%, #2F80ED 51%, #56CCF2 100%);
margin: 10px;
padding: 15px 45px;
text-align: center;
text-transform: uppercase;
transition: 0.5s;
background-size: 200% auto;
color: white;
border-radius: 10px;
display: block;
border: none;
}
.addNote:hover {
background-position: right center; /* change the direction of the change here */
color: #fff;
text-decoration: none;
}
.resetNote{
background-image: linear-gradient(to right, #fc9116 0%, #ec0909 51%, #f19318 100%);
margin: 10px;
padding: 15px 45px;
text-align: center;
text-transform: uppercase;
transition: 0.5s;
background-size: 200% auto;
color: white;
border-radius: 10px;
display: block;
border: none;
}
.resetNote:hover{
background-position: right center; /* change the direction of the change here */
color: #fff;
text-decoration: none;
}
#tablediv {
padding: 4% 5%;
font-family: 'Open Sans', sans-serif;
}
#items th{
color: white;
}
#items td {
padding-top: 5%;
color: white;
}
#items .note-body{
display: none;
}
#deletebtn {
background-image: linear-gradient(to right, #f7630e 0%, #eb0a0a 51%, #e4152d 100%);
padding: 5px 20px;
text-align: center;
transition: 0.5s;
background-size: 200% auto;
color: white;
border-radius: 6px;
display: block;
border: none;
}
#deletebtn:hover {
background-position: right center; /* change the direction of the change here */
color: #fff;
text-decoration: none;
}
#viewbtn {
background-image: linear-gradient(to right, #b6db2d 0%, #0da121 51%, #d4d42c 100%);
padding: 5px 20px;
text-align: center;
transition: 0.5s;
background-size: 200% auto;
color: white;
border-radius: 6px;
display: block;
border: none;
}
#viewbtn:hover {
background-position: right center; /* change the direction of the change here */
color: #fff;
text-decoration: none;
}