This repository was archived by the owner on Nov 7, 2024. It is now read-only.
forked from ad3978/flashfocus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflashcards.css
More file actions
131 lines (108 loc) · 1.98 KB
/
flashcards.css
File metadata and controls
131 lines (108 loc) · 1.98 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
119
120
121
122
123
124
125
126
127
128
129
130
131
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
h1{
text-align: center;
}
body{
font-family: 'Varela Round', sans-serif;
font-size: 1rem;
background-color: #d8ffd6;
}
button{
padding: 8px;
outline: none;
cursor: pointer;
border: 1px solid lightgray;
border-radius: 5px;
background: rgb(132, 224, 125);
}
button:hover{
background-color: rgba(0, 0, 0, 0.1);
}
.container{
width: 1280px;
margin: auto;
}
header{background-color: #d8ffd6;}
#header{
text-align: center;
padding-top: 8%;
}
#header button{
font-family: inherit;
border: 1px solid rgb(0, 0, 0);
}
#create_card{
display: none;
width: 370px;
margin:auto;
padding: 20px;
margin-top: 10px;
background: #a4e09e;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.9);
}
#create_card h2{
color: black;
text-align: center;
}
#create_card textarea{
width: 100%;
border-radius: 5px;
font-family: inherit;
border: 1px solid lightgray;
resize: none;
}
#create_card button{width: fit-content;}
#flashcards{
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
width: 100%;
margin: auto;
margin-top: 10px;
padding: 0px 10px;
}
.flashcard{
width: 370px;
height: 200px;
word-wrap: break-word;
margin: 10px;
background:#fff;
cursor: pointer;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.9);
position: relative;
}
.flashcard h2{font-size: 1rem;}
.fa-minus{
top: 3%;
right: 2%;
position: absolute;
color: #1a1a1a;
transition: 0.3s ease-out;
}
.fa-minus:hover{color: #d8ffd6;}
@media(max-width:1280px){
.container{width: 100%;}
}
@media(max-width:768px){
.flashcard{margin: auto;}
.flashcard{
margin-top: 10px;
margin-bottom: 10px;
}
}
@media(max-width:480px){
#header{
padding: 20px;
gap: 10px;
flex-direction: column;
align-items: center;
}
#create_card{width: 95%;}
.flashcard{width: 100%;}
}