-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain page.css
143 lines (128 loc) · 2.29 KB
/
main page.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
body
{
background-color: black;
background-image: url(mainpbg.jpg);
background-repeat:no-repeat;
background-size: contain;
}
.topbar a
{
padding-left: 30px;
padding-right: 30px;
font-family: 'Fredoka One';
text-decoration: none;
color: white;
transition: color 2s;
font-size: 30px;
}
.topbar a:hover
{
color:rgb(242,170,76);
transition: all 2s;
}
.welcome pre
{
margin-top: 240px;
text-align: center;
font-size: 50px;
color:white;
background-color:rgba(0, 0, 0, 0.322);
font-family: 'Annie Use Your Telescope';
}
.brands img
{
transition: filter 2s;
border-radius: 100px;
padding-left:80px;
padding-right:80px;
width: 300px;
height: 300px;
filter: grayscale(0);
}
.brands img:hover
{
filter: grayscale(1);
transition: filter 2s;
}
.ibrand h1
{
font-family:'Abel';
font-size:60px;
color:rgb(242,170,76);
text-align: center;
text-decoration: underline;
}
.cardesc
{
color: white;
font-family: 'Abel';
display: inline;
padding-left: 60px;
padding-right: 60px;
font-size: 30px;
}
.cfeatures
{
padding-left:20px;
padding-right:20px;
display: inline;
color: rgb(242,170,76);
font-family: 'Abel';
font-size: 40px;
}
.forms
{
font-size: 20px;
font-family: 'Annie Use Your Telescope';
color:rgb(242,170,76);;
}
.forms textarea
{
border-radius: 4px;
border-width: 1px;
background-color: black;
color: white;
border-color: white;
}
.f
{
border-radius: 4px;
border-width: 1px;
background-color: black;
color: white;
border-color: white;
font-family:'Abel';
}
.forms select
{
font-size: 15px;
font-family: 'Annie Use Your Telescope';
border-radius: 4px;
border-width: 1px;
background-color: black;
color: white;
border-color: white;
}
.s
{
border-radius: 0px;
border-width:3px;
border-style: solid;
border-color: black;
font-size: 40px;
font-family: 'Abel';
text-decoration: none;
display: inline-block;
text-align: center;
color: black;
background-color:rgb(250, 250, 250);
height: 60px;
line-height: 50px;
}
.s:hover
{
border-color: white;
color: white;
background-color: rgb(0, 0, 0);
transition: all 1s;
}