-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (79 loc) · 1.33 KB
/
style.css
File metadata and controls
83 lines (79 loc) · 1.33 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
body{
font-family: 'Roboto', sans-serif;
background-position: center;
background-size: cover;
height: 100vh;
background-image: linear-gradient(to right bottom, #051937, #004d7a, #008793, #00bf72, #a8eb12);
}
li span{
background-color: #e74c3c;
color: #fff;
height: 40px;
margin-right: 20px;
width: 0px;
opacity: 0;
display: inline-block;
text-align: center;
transition: 0.2s linear;
}
li:hover span{
width: 40px;
opacity: 1.0;
}
.fa-pencil-square-o{
float: right;
padding-top: 5px;
}
#container{
width: 360px;
margin: 100px auto;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
background-color: #f7f7f7;
}
.toggle{
color: grey;
text-decoration: line-through;
}
h1{
background-color: #2980b9;
text-transform: uppercase;
margin: 0;
padding: 10px 25px;
font-weight: normal;
color: white;
}
#header{
background-color: #2980b9;
text-transform: uppercase;
margin: 0;
padding:0;
font-weight: normal;
color: white;
}
ul{
list-style: none;
margin: 0;
padding: 0;
}
li{
background-color: #fff;
height: 40px;
line-height: 40px;
color: #666;
}
li:nth-child(2n){
background-color: #f7f7f7;
}
input{
box-sizing: border-box;
font-size: 18px;
padding: 13px 13px 13px 20px;
width: 100%;
background-color: #f7f7f7;
color: #2980b9;
border: 3px solid rgba(0,0,0,0);
}
input:focus{
background-color: #fff;
border: 3px solid #2980b9;
}