-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
130 lines (114 loc) · 2.13 KB
/
style.css
File metadata and controls
130 lines (114 loc) · 2.13 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
122
123
124
125
126
127
128
h1{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: white;
font-size: 3vh;
}
h2{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: white;
font-size: 2vh;
}
h3{
color: black;
}
body{
font-family: Helvetica, Arial, sans-serif;
text-align: center;
font-size: 1vw;
}
.header{
background-color: rgb(17, 131, 207);
padding: 15px;
text-align: center;
}
.body{
overflow: hidden;
max-height: 800px;
min-height: 600px;
width: 100%;
position: relative;
text-align: center;
color: white;
}
@media only screen and (max-width: 800px){
.body{
width: 100%;
max-height: 600px;
min-height: 400px;
}
.body img{
max-height: 600px;
min-height: 400px;
}
}
.body a{
text-decoration: none;
color: rgb(19, 156, 247);
}
.body a:hover
{
color: rgb(19, 61, 247);
text-decoration:none;
cursor:pointer;
}
.body p{
background-color: rgba(43, 41, 38, 0.671);
}
.body-text{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 2vh;
}
.body img{
height: auto;
width: auto;
max-width: 100%;
}
.grid-container{
display: grid;
grid-template-columns: auto auto auto;
grid-template-rows: auto auto auto;
background-color: white;
padding: 1vw 0;
}
.item{
background-color: grey;
border: 0.5vw solid rgb(17, 131, 207);
padding: 1vw;
text-align: center;
color: white;
border-radius: 1vw;
font-size: 2vh;
}
.item img{
opacity: 0.8;
height: auto;
max-width: 40%;
justify-content: center;
}
input[type=text], select textarea {
width: 100%;
border: 0.5vw;
padding: 1vw;
background-color: rgb(17, 131, 207);
padding: 20px;
}
input[type=submit]{
background-color: rgb(17, 131, 207);
color: white;
padding: 1vw 2vw;
border: none;
border-radius: 2vw;
cursor: pointer;
}
footer{
margin-top: 3vw;
background-color: rgb(17, 131, 207);
padding: 1vw;
color: white;
}
footer p{
font-size: 2vh;
}