-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
83 lines (72 loc) · 1.29 KB
/
main.css
File metadata and controls
83 lines (72 loc) · 1.29 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
/* font-family: 'Montserrat', sans-serif;
font-family: 'Cinzel', serif; */
body {
padding: 0;
margin: 0;
font-size: 1em;
background-color: black;
}
.header {
width: 100%;
background-color: black;
padding: 2em 0 2em 0;
margin: 0 auto;
}
.title {
text-align: center;
color: white;
font-family: 'Cinzel', serif;
font-size: 5em;
letter-spacing: 5px;
}
.main {
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 90%;
background-color: #fDDD98;
margin: 0 auto 5em auto;
border-radius: 5px;
}
img {
border-radius: 5px;
}
button {
width: 12em;
height: 8em;
border: none;
border-radius: 5px;
background-color: black;
color: white;
margin-bottom: 2em;
font-family: 'Cinzel', serif;
letter-spacing: 2px;
}
button:hover,
button:focus {
background: #0c5663;
border: none;
}
button:focus {
outline: 0px;
border: none;
}
button:active {
transform: scale(0.99);
border: none;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
padding: 3em 0 3em 0;
width: 300px;
height: 800px;
}
.text {
text-align: justify;
margin-left: 3em;
margin-right: 3em;
width: 15em;
font-family: 'Montserrat', sans-serif;
}