-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (94 loc) · 1.76 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
107
*{
margin: 0;
padding:0;
box-sizing: border-box;
}
body{
display:flex;
font-family:fantasy;
font-weight: 100;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: blue;
}
.container{
height:100vh;
width: 30em;
display:flex;
flex-flow: column ;
justify-content: center;
align-items: center;
}
.Add{
width: 30em;
display:flex;
flex-flow: row nowrap ;
}
.Add input {
width: 24em;
height: 3.5em;
padding:0.4em;
margin-left: 3.5em;
border: 1px solid #fff;
border-radius:0.3em;
}
.Add .addbtn {
align-self: center;
border: 1px solid #000;
border-radius:0.2em;
background-color: transparent;
padding:0.3em;
margin-left: 0.5em;
height:2.5em;
}
.Add .addbtn:hover{
background-color:#fff;
transform:scale(1.1);
}
.Add input:focus{
outline:none;
}
.btn {
border: 1px solid #000;
border-radius:0.3em;
background-color: transparent;
padding:0.4em;
}
.container h1,.container h2{
font-size:3em;
font-family:fantasy;
margin: 0.5em 0;
font-weight: 400;
letter-spacing: 0.1em;
}
.container h2{
font-size:2em;
font-family:fantasy;
font-weight: 400;
letter-spacing: 0.1em;
}
.list ul {
width: 30em;
display:flex;
flex-flow: column nowrap ;
justify-content: space-evenly;
align-items: center;
margin: 1.2em 0em;
list-style:none;
}
.list ul li {
width: 24em;
display:flex;
flex-direction: row;
justify-content: space-between;
padding: 0.3em;
background-color: #fff;
border: 1px solid #fff;
border-radius:0.3em;
margin:0.8em 0.3em;
}
.btn:hover{
background-color: blue;
transform:scale(1.2);
}