-
Notifications
You must be signed in to change notification settings - Fork 0
/
set.css
75 lines (72 loc) · 1.15 KB
/
set.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
*{
box-sizing: border-box;
}
.container{
background-color: #57a2b7;
border-radius: 10px;
margin:0;
padding:20px;
height:600px;
width: 350px;
position: absolute;
top: 50%;
left:50%;
transform: translate(-50%,-50%);
box-shadow: 6px 6px 27px #000000;
}
h1{
text-align: center;
font-family: 'Courier New', Courier, monospace;
color:#fff;
padding:0px;
margin:10px;
}
.container input{
width:100%;
height:35px;
border-radius: 15px;
text-indent: 15px;
outline:none;
border:2px solid #de1818;
}
.container button{
margin-top:10px;
width: 100%;
height:35px;
background-color:#4751b9;
border:none;
outline:none;
border-radius: 5px;
color:#fff;
font-family: 'Times New Roman';
}
::placeholder{
font-family: 'Times New Roman', Times, serif;
text-indent:15px;
}
hr{
margin-bottom:15px;
}
button:hover{
background-color:#de1818;
}
ul{
margin:0;
padding:0;
}
ul li{
position: relative;
background: #0d535d;
list-style-type: none;
color: #fff;
border-radius:5px;
text-indent: 5px;
margin-top:5px;
height:30px;
padding-top:6px;
text-indent: 15px;
transition: ease 0.2s;
}
ul li:hover{
background:#de1818;
}