-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (91 loc) · 1.97 KB
/
style.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
body {
background-color: #52042b;
background-image: url("https://images.pexels.com/photos/2041540/pexels-photo-2041540.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
h1 {
text-align: center;
color: rgb(232, 237, 238);
margin: 10vh 0 0 0;
font-family: sans-serif;
font-size: 3rem;
animation: rainbow 5s infinite ease-in;
}
.container {
width: 100%;
min-height: 100vh;
}
.center {
display: flex;
justify-content: center;
align-items: center;
}
table {
width: 70%;
margin: 50px auto;
background-color: #743612c2;
}
table.list {
text-align: center;
width: 100%x;
border: 1px solid ;
}
td {
border: 1px solid rgb(17, 17, 17);
text-align: left;
padding: 8px 15px;
}
tr:nth-child(even),
table.list thread > tr {
background-color: #bcddab;
}
input[type="text"] {
width: 91%;
padding: 10px 10px;
margin: 0px 0 10px 0;
display: inline-block;
border: none;
border-radius: 6px;
}
input[type="submit"],
input[type="reset"] {
background: #eee;
padding: 6px 12px;
margin: 15px 0 10px;
display: inline-block;
border: none;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
outline: none;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
background: #fdfdfd;
}
input[type="submit"],
input[type="reset"] {
background: #dba2d7;
color: rgb(109, 35, 35);
font-size: 1.2rem;
font-family: cursive;
}
.input-part {
font-family: sans-serif;
font-size: 1.3rem;
}
button {
background: #2548af;
color: rgb(59, 17, 17);
padding: 6px 12px;
margin: 15px 0 10px;
display: inline-block;
border: none;
border-radius: 10px;
font-size: 1.2rem;
cursor: pointer;
outline: none;
}