-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
120 lines (108 loc) · 2.51 KB
/
Copy pathstyles.css
File metadata and controls
120 lines (108 loc) · 2.51 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
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
body {
background-image: url("https://www.getharvest.com/hs-fs/hubfs/resources/harvest-gif-motivate.gif?width=720&name=harvest-gif-motivate.gif");
}
.div-form{
float:absolute;
margin-left: 200px;
background-color:antiquewhite;
width: 67%;
margin: 20px auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
#form-container {
background-color:antiquewhite;
width: 67%;
margin: 20px auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
.table {
margin: 20px auto;
width: 70%;
border-collapse: collapse;
border: 1px solid #000;
}
.table th, .table td {
border: 1px solid black;
padding: 8px;
background-color:antiquewhite;
}
#form-entry label {
display: block;
margin-bottom: 5px;
}
#form-entry input[type="text"], #form-entry select {
width: calc(100% - 10px);
padding: 8px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
#form-entry input[type="submit"] {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
#form-entry input[type="submit"]:hover {
background-color: #0056b3;
}
.stopwatch {
font-size: 18px;
margin-bottom: 10px;
}
.table button {
padding: 6px 12px;
margin-right: 5px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.table button:nth-child(odd) {
background-color: #007bff;
color: #fff;
}
.table button:nth-child(even) {
background-color: #ff0000;
color: #fff;
}
.table button:hover {
opacity: 0.8;
}
#login-container, #signup-container{
background-color:antiquewhite;
width: 30%;
margin: 20px auto;
padding: 20px;
border: 1px solid #000000;
border-radius: 5px;
}
#login-btn, #signup-btn{
padding: 6px 12px;
margin-right: 5px;
border: none;
border-radius: 5px;
cursor: pointer;
align-self: center;
color: white;
background-color: #007bff;
}
#login-form input[type="text"],[type="password"]{
width: calc(100% - 10px);
padding: 8px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
#signup-form input[type="text"],[type="password"],[type="email"]{
width: calc(100% - 10px);
padding: 8px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}