-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (83 loc) · 1.49 KB
/
style.css
File metadata and controls
94 lines (83 loc) · 1.49 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
body {
background-color: #38aaae;
}
p {
margin: 0;
padding: 0;
color: #000000;
font-family: Verdana, sans-serif;
padding-left: 10px;
padding-right: 10px;
padding-top: 5px;
font-weight: normal;
font-size: 18px;
margin-top: 20px;
text-align: justify;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.body-container {
width: 900px;
height: 530px;
padding: 10px;
padding-top: 0px;
margin-top: 5px;
display: flex;
flex-direction: column;
align-items: left;
background-color: #f7f6df;
border-radius: 12px;
box-shadow: 3px 3px 4px 2px rgba(0,0,0,.6);
}
.nav-links{
flex: 1;
text-align: right;
}
.button-text::after{
content: '';
width: 0%;
height: 2px;
background: #f7f6df;
display: block;
margin: auto;
transition: 0.5s;
}
.button-text:hover::after{
width: 100%;
}
h1 {
font-weight: bold;
font-size: 50px;
padding: 5px;
margin: 5px;
font-family: monospace;
color: #f7f6df;
text-align: center;
}
h2 {
font-size: 20px;
padding: 0px;
margin-top: 0px;
font-family: Verdana, sans-serif;
color: #f7f6df;
text-align: center;
font-weight: normal;
}
.next-button {
display: flex;
align-items: center;
margin: 10px;
cursor: pointer;
}
.button-text {
font-size: 20px;
color: #f7f6df;
font-family: Verdana, sans-serif;
padding: 20px;
}
::selection {
background: #f5d133;
}