-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (52 loc) · 987 Bytes
/
style.css
File metadata and controls
56 lines (52 loc) · 987 Bytes
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
/* viide elemendile st muudame kõiki selliseid elemente */
body {
display: flex;
padding: 1em;
flex-direction: column;
gap: 3em; /* vahe elementide vahel */
align-items: center;
}
/* #-ga viitame elemendile, millel on selline id */
#photo {
max-width: 25em;
max-height: 30em;
}
/* .-ga viitame elemenditele, millel on selline class */
.container {
display: flex;
padding: 1em;
align-items: center;
gap: 3em;
justify-content: center;
}
#textBox {
max-height: 25em;
overflow-x: hidden;
overflow-y: auto;
}
.card {
width: 20em;
height: 25em;
display: flex;
flex-direction: column;
align-items: center;
background-color: #D9D9D9;
padding: 5em 1.5em 1.5em;
}
.icon {
max-width: 10em;
}
iframe {
width: 50em;
height: 28em;
}
button {
width: 20em;
border: none;
background-color: #D9D9D9;
padding: 2em;
}
button:hover {
background-color: #C8C6C6;
cursor: pointer;
}