This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
116 lines (98 loc) · 1.63 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
113
114
115
116
body {
font-family: Roboto, sans-serif;
font-size: 0.8em;
margin: 0;
padding: 0;
height: 100vh;
background-color: #e4c8e4;
}
header {
background-color: #8b008b;
color: #fff;
position: fixed;
width: 100%;
top: 0;
}
header nav ul {
list-style: none;
display: flex;
justify-content: space-around;
padding-left: 0;
}
header nav ul li {
display: inline;
}
header nav ul li a:link, a:hover, a:active, a:visited {
text-decoration: none;
color: #fff;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.logo-container {
display: flex;
flex-direction: column;
align-items: center;
background-color: #8b008b;
border-radius: 100%;
width: 30%;
height: 30%;
margin-top: 6%;
margin-bottom: 1.5%;
}
.logo {
width: 100%;
height: 100%;
}
.content-container {
background-color: #8b008b;
width: 100%;
margin-bottom: 3%;
}
.content {
margin: 8%;
color: #fff;
}
.form-container {
width: 100%;
margin-bottom: 1%;
}
.form {
width: 100%;
height: 760px;
}
.footer {
background-color: #8b008b;
color: #fff;
text-align: center;
width: 100%;
margin: 0 auto;
padding: 1% 0;
}
.footer a:link, a:hover, a:active, a:visited {
color: #fff;
text-decoration: none;
}
h1 {
color: #000000;
}
p {
color: #ffffff;
}
a:link {
color: #000000;
}
@media (max-width: 768px) {
.logo-container {
width: 50%;
height: 50%;
margin-top: 18%;
margin-bottom: 4%;
}
.form {
height: 950px;
}
}