-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (83 loc) · 1.52 KB
/
style.css
File metadata and controls
103 lines (83 loc) · 1.52 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
*{
margin:0;
padding:0;
font-family: cursive;
}
body{
background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(pexels-irina-iriser-1590549.jpg);
background-position: center;
background-size: cover;
}
.container{
width: 380px;
background:rgba(0,0,0,0.5);
height: 400px;
margin: 9% auto;
border-radius: 5px;
position: relative;
}
h1{
text-align: center;
margin-top: 30px;
margin-bottom: 30px;
color: rgb(206, 151, 80);
}
.container form{
width: 280px;
position:absolute;
top:100px;
left:40px;
}
form input{
width:100%;
padding: 10px 5px;
margin: 5px;
border:0;
border-bottom: 1px solid #777;
outline: none;
background: transparent;
color: #c48241;
font-size: 20px;
}
::placeholder{
color: #777;
}
.btn{
width:100%;
margin:40px auto;
text-align: center;
}
form button{
width: 110px;
height: 35px;
margin:0 15px;
background:linear-gradient(to right, #c48241, #c48e58);
border-radius: 20px;
border: 0;
outline: 0;
color:rgb(219, 208, 208);
cursor:pointer;
font-size: 20px;
}
.table{
border-collapse: collapse;
width: 1300px;
background:rgba(0,0,0,0.5);
margin: 9% auto;
border-radius: 5px;
position: relative;
}
table,th,td{
padding:10px;
border-bottom: 1px solid #777;
}
th{
font-size: 25px;
font-weight: 700;
color:#c48241;
}
td{
font-size: 20px;
color:#c48e58;
font-weight: 400;
}