-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (114 loc) · 2.17 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
112
113
114
115
116
117
118
119
120
121
body{
font-family: Arial;
margin: 0 auto;
}
header {
background-color: rgb(0, 143, 24);
width: 100%;
}
header img {
margin: 1%;
}
header .hf{
float: right;
margin: 1.5%;
}
header .hi{
background-color: #fff;
border: none;
border-radius: 20px;
text-align: center;
transition-duration: 0.5s;
padding: 8px 30px;
cursor: pointer;
color: #000;
font-weight: bold;
margin-top: 15%;
}
header .hi:hover{
background-color: #ccc;
}
table {
border-collapse: collapse;
}
tr{background-color: #fff;}
th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: rgb(0, 143, 24);
color: white;
}
table .btn{
background-color: #ec7115;
border: none;
text-align: center;
transition-duration: 0.5s;
padding: 8px 30px;
cursor: pointer;
color: #fff;
margin-top: 5%;
}
table .btn:hover{
background-color: #e3e3e3;
color: #ec7115;
}
.button{
background-color: rgb(0, 143, 24);
border: none;
border-radius: 20px;
text-align: center;
transition-duration: 0.5s;
padding: 8px 30px;
cursor: pointer;
color: #fff;
margin-top: 5%;
font-weight: bold;
}
.button:hover {
background-color: rgb(102,255,255);
color: #000;
}
.cbtn{
background-color: #fff;
border: none;
border-radius: 20px;
text-align: center;
transition-duration: 0.5s;
padding: 8px 30px;
cursor: pointer;
color: #000;
font-weight: bold;
}
.cbtn:hover{
background-color: #ccc;
}
form{
margin-top: 2%;
}
input[type=text], input[type=password]{
width: 100%;
padding: 12px;
border-radius: 3px;
box-sizing: border-box;
border: 2px solid #ccc;
transition: 0.5s;
outline: none;
}
input[type=text]:focus, input[type=password]:focus {
border: 2px solid rgb(0,51,102);
}
textarea {
outline: none;
border: 2px solid #ccc;
}
textarea:focus {
border: 2px solid rgb(0,51,102);
}
.container {
width: 55%;
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
margin: 0 auto;
}