-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
118 lines (107 loc) · 2.28 KB
/
styles.css
File metadata and controls
118 lines (107 loc) · 2.28 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
*{
padding: 0;
margin: 0;
}
html, body{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
background: #333;
display: flex;
flex-direction: row;
width: 100vw;
height: 100vh;
}
.add{
padding: 3% 1%;
}
.line{
background-color: #888;
width: 2px;
height: 100%;
}
h1{
font-size: 5rem;
color: #999;
}
input[type=text]{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
color: #eee;
width: 100%;
border-radius: 5px;
background: none;
border: none;
font-size: 1.2rem;
}
input[type=text]::placeholder{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
color: #666;
}
textarea{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
color: #eee;
width: 100%;
border-radius: 5px;
background: none;
border: none;
font-size: 1.2rem;
}
.container{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
padding: 3%;
gap: 5%;
width: 100%;
display: grid;
flex-direction: column;
}
.container img{
align-self: center;
justify-self: center;
}
.container .card{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
min-height: 250px;
height: fit-content;
width: fit-content;
display: flex;
flex-direction: column;
border: 1px solid #aaa;
border-radius: 8px;
background: #333;
}
.container .card hr{
width: 100%;
color: white;
}
.container .card .head{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
padding: 5%;
}
.container .card .body{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
min-height: 150px;
padding: 5%;
}
.container .card .foot{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
padding: 3%;
display: flex;
flex-direction: row;
gap: 10%;
}
.container .card .foot .time{
margin-left: 5px;
color: #eee;
}
.container .card .foot .del-button{
margin-left: auto;
margin-right: 50px;
display: flex;
flex-direction: row;
gap: 3%;
}
.container .card .foot .del-button button{
border-radius: 5px;
padding: 3%;
background-color: #888;
color: #eee;
border: none;
}