-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathComp.css
More file actions
83 lines (80 loc) · 1.39 KB
/
Comp.css
File metadata and controls
83 lines (80 loc) · 1.39 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
*{
font-size: 20px;
}
body {
background-color: #8D9440 !important;
}
form{
display: flex;
flex-direction: column;
margin-top: 50px;
width: 400px;
margin: auto;
}
input{
margin-top: 15px;
padding: 15px;
width: 100%;
margin-bottom: 20px;
border-radius: 5px;
outline-style: none;
border: 2px solid #b4b4b4;
}
textarea{
border-radius: 5px;
outline-style: none;
border: 2px solid #b4b4b4;
margin-top: 10px;
}
.button{
margin-top: 15px;
box-shadow: 0 0 5px 1px black;
outline-style: none;
background-color: #616247;
border: 1px solid #616247;
color: white;
}
.button:hover{
cursor: pointer;
}
body{
background-color: red;
}
.list{
margin: 40px 200px;
}
.list li{
list-style-type: none;
margin: 15px;
}
.list-button{
padding: 6px;
border-radius: 8px;
box-shadow: 0 0 5px 1px black;
outline-style: none;
background-color: #616247;
border: 1px solid #616247;
color: white;
font-size: 16px;
}
.list-button:hover{
cursor: pointer;
}
.list li span{
color: white;
}
.change-button{
margin-left: 10px;
padding: 6px;
border-radius: 8px;
box-shadow: 0 0 5px 1px black;
outline-style: none;
background-color: #616247;
border: 1px solid #616247;
color: white;
font-size: 16px;
}
div[class*='Comp']:hover{
opacity: 0.7;
cursor: pointer;
}