-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
68 lines (60 loc) · 1.18 KB
/
index.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
.welcome {
width: 100%;
margin: 20px 0 20px 0;
text-align: center;
align-items: center;
text-justify: inter-word;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.form {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
width: 700px;
margin-top: 20px;
margin-bottom: 20px;
}
.form select, .form input[type="text"], .form input[type="submit"] {
margin: 5px;
}
.form input[type="text"], .form select {
padding: 5px;
border-radius: 5px;
border: 1px solid #ccc;
box-sizing: border-box;
flex: 1;
}
.form input[type="submit"] {
padding: 10px 20px;
background-color: #2457cf;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.logout {
position: absolute;
top: 60px;
right: 30px;
}
.logout button {
padding: 5px 5px;
background-color: #ffffff;
color: #000000;
border: none;
border-radius: 5px;
cursor: pointer;
}
.logout button:hover {
background-color: #2457cf;
color: #ffffff;
}