-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
112 lines (89 loc) · 1.38 KB
/
styles.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
108
109
110
111
112
html {
font-size: 16px;
font-family: Candara, sans-serif;
background-color: #e3d5ca;
}
body {
font-size: 1rem;
}
h1 {
font-size: 2.5rem;
color: #370617;
}
h2 {
font-size: 1.8rem;
color: #6a040f;
}
h1,
h2,
table,
#introduction {
text-align: center;
}
#table {
justify-content: center;
width: 100%;
display: flex;
}
p {
color: rgb(0, 0, 0);
font-size: 1.2rem;
}
img {
margin: 10px auto;
width: 100px;
height: 150px;
}
.cover {
border: 3px solid #43291f;
border-radius: 10px;
}
#container {
background-color: #ccd5ae;
width: 40%;
height: 220px;
margin: 0 auto;
border: 5px solid #a3b18a;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
}
#container div {
width: 200px;
height: 200px;
}
#form {
font-weight: bold;
font-size: 1.2rem;
}
button {
background-color: #6f1d1b;
color: white;
border-radius: 5px;
}
button:hover {
background-color: #fefae0;
color: #432818;
}
@media (max-width: 900px) {
h1 {
font-size: 1.5rem;
}
h2 {
font-size: 1.2rem;
}
p {
font-size: 1rem;
}
#container {
width: 100%;
height: auto;
border: 2px solid #a3b18a;
}
img {
margin: 4px auto;
width: 50%;
height: 60%;
}
}