-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (78 loc) · 1.47 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
* {
margin: 0;
padding: 0;
outline: 0;
box-sizing: border-box;
}
html, body{
min-height: 100%;
}
body {
background: #ec3f4e6b;
}
body, input, button {
font-family: 'Roboto', Arial, Helvetica, sans-serif;
font-size: 14px;
}
.container {
margin: 80px auto 0;
max-width: 450px;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.container h2 {
color: #fff;
}
.container input {
margin-top: 10px;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 20px;
height: 35px;
padding: 0 15px;
font-size: 16px;
width: 80%;
}
.container button.btn {
border: 0;
border-radius: 20px;
width: 80%;
height: 42px;
padding: 0 20px;
font-size: 16px;
font-weight: bold;
background: #fff;
color: #f05a5b;
cursor: pointer;
}
.container ul {
padding: 10px;
align-items: center;
display: flex;
flex-direction: column;
width: 100%;
}
.container li {
padding: 10px;
background: #be5757a4;
border-radius: 8px;
color: #fff;
font-size: 16px;
display: block;
flex-direction: row;
word-wrap: break-word;
width: 80%;
margin: 5px 0px;
height: auto;
}
.container div{
width: 100%;
text-align: right;
}
.container div a{
text-decoration: none;
color: #fff;
cursor: pointer;
}