-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.css
119 lines (100 loc) · 1.98 KB
/
team.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
body {
background-color: #f5f7f7;
font-family: "Nunito Sans", sans-serif;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.projcontain {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: white;
width: 80%;
position: relative;
margin: auto;
border-radius: 20px;
padding: 10px 0 30px 0;
}
.inp {
width: 98%;
padding: 8px;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 20px;
background-color: #fcfcfc;
}
.inp:hover:not(#btn, .readonly) {
border: 1px solid #757575;
}
.inp:focus, #info:focus {
outline: none;
outline: solid rgb(55 112 255) 2px;
background-color: white;
}
.inp, #info {
font-size: 20px;
margin: 10px 0 15px 0;
}
#info {
border-radius: 5px;
height: 60vh;
width: 98%;
background-color: #fcfcfc;
}
.btncontain {
position: relative;
display: flex;
justify-content: space-around;
align-items: center;
}
.btn {
color: white;
border: none;
cursor: pointer;
transition: all 1s;
width: 100%;
padding: 8px;
margin: 6px 0 6px 0;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 20px;
position: relative;
top: 20px;
height: 40px;
background-color: rgb(55 112 255);
width: 200px;
}
#chng {
width: 100%;
margin: 10px 0 0 0;
}
.btn:hover {
background-color: rgb(11, 21, 165);
transform: translate(0, -3px);
transition: all 0.5s;
}
#edit {
height: 40px;
position: relative;
top: -1px;
background-color: rgb(55 112 255);
width: 200px;
}
#edit:hover {
background-color: rgb(11, 21, 165);
}
#delete {
background-color: rgb(255, 71, 71);
width: 200px;
position: relative;
top: 6px;
}
#delete:hover {
background-color: rgb(185, 0, 0);
}