-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (105 loc) · 1.89 KB
/
style.css
File metadata and controls
121 lines (105 loc) · 1.89 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
body {
background-color: #0d081b;
color: #eeeaf6;
padding: 10px;
font-family:'Roboto Condensed';
word-wrap: break-word;
}
audio{
text-align: center;
width: 20%;
margin: 2px 0px;
padding: 4px 0px;
}
.header {
background-color: #a687e5;
padding: 20px;
text-align: center;
border: 2px solid #0d081b;
border-radius: 10px;
}
.title{
font-size: 1000%;
text-align: center;
}
.footer {
background-color: #350f95;
padding: 10px;
text-align: center;
border-radius: 10px;
}
h5{
text-align: center;
padding: 0px;
margin: 0px;
}
form{
padding: 5px;
}
.login, .register, .contact{
text-align: center;
}
.form span{
display: inline-block;
text-align: center;
}
input, textarea, select{
margin: 5px;
padding:5px;
display: inline-block;
border: 3px solid #5d1ff9;
border-radius: 5px;
}
img {
object-fit: cover;
aspect-ratio: 1/1;
width: 100%;
padding: 2px;
margin-inline: 5%;
border-radius: 4px;
}
.row{
margin: 10px 0px;
padding: 10px 0px;
border: 2px solid #5d1ff9;
height: 30%;
}
.col-2{
text-align: center;
}
.topnav {
overflow: auto;
background-color: #350f95;
border-radius: 5px;
}
.topnav a {
display:inline-block;
color: #eeeaf6;
text-align: center;
padding: 14px 3.4%;
text-decoration: none;
font-size: 17px;
}
.topnav a:visited {
color: #eeeaf6;
}
.topnav a:hover {
background-color: #350f95;
}
.topnav a:active {
background-color: #eeeaf6;
color: #0d081b;
}
a:link{
color: #5d1ff9;
}
a:visited{
color: #350f95;
}
a:hover{
color: #eeeaf6;
}
a:active{
color: #0d081b;
}