-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (93 loc) · 1.59 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
body {
background: #000000;
font-family: "Comic Sans MS";
}
p {
color: #88236f;
text-align: center;
}
h1 {
color: #fff;
font-size: 24;
letter-spacing: 2px;
margin-top: 80px;
text-align: center;
}
.content {
background: #fff;
max-width: 960px;
margin: 30px auto;
padding: 20px 30px;
border-radius: 10px;
box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
}
ul {
list-style-type: none;
padding: 0;
}
li {
padding: 20px;
background: #f6f6f6;
font-size: 20px;
color: #555;
position: relative;
border-bottom: 1px solid #e6e6e6;
height: 46px;
}
li:nth-child(even) {
padding: 20px;
background: #f2f2f2;
}
li span {
display: block;
}
li span:nth-child(2) {
font-size: 16px;
margin-top: 6px;
color: #999;
}
li div {
position: absolute;
top: 0;
right: 0px;
background: rgba(255, 255, 255, 0.6);
width: 40px;
text-align: center;
padding: 10px 0;
font-weight: bold;
cursor: pointer;
}
form input {
float: left;
width: 38%;
margin: 0;
border: 0;
border-bottom: 1px solid #eee;
margin: 0 1%;
padding: 10px;
display: block;
box-sizing: border-box;
font-size: 18px;
}
form input:focus {
outline: none;
border-bottom: 3px solid #88236f;
padding-bottom: 8px;
transition: all ease 0.2s;
}
form:after {
content: "";
clear: both;
display: block;
}
button {
border: 0;
background: rgb(207, 255, 165);
border-radius: 3px;
padding: 13px;
width: 14%;
box-shadow: -1px 0px 1px rgba(0, 0, 0, 0.1);
font-weight: bold;
letter-spacing: 1px;
color: #999;
}