-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (78 loc) · 1.6 KB
/
style.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
body{
background-image: url(background.jpg);
background-repeat: no-repeat;
}
.btnholder button{
border-radius: 2rem;
width: 180px;
height:50px;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 3px;
margin-top: 80vh;
margin-left: 6vw;
}
.tab{
margin-top: -70vh;
margin-left:40vw;
width: 60%;
height: 300px;
}
.iconclass{
padding:25px;
font-size: 2em;
}
.iconclass:hover{
color: red;
}
input[type=search]{
width: 6em;
height: 2em;
}
.jumbotron{
display: none;
}
@media only screen and (max-width: 600px) {
.btnholder button{
border-radius: 2rem;
width: 180px;
height:50px;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 3px;
margin-top: 80vh;
margin-left: 20vw;
}
.tab{
margin-top: -70vh;
margin-left:5vw;
width: 90%;
height: 300px;
}
input[type=search]{
width: 6em;
height: 2em;
}
.iconclass{
font-size: 3em;;
}
.btnholder button{
border-radius: 2rem;
width: 180px;
height:50px;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 3px;
margin-bottom: -15vh;
margin-left: 25vw;
}
}
/* For tablet portrait mode */
@media only screen and (min-width: 768px) and (orientation:portrait) and (min-height:1024px){
.jumbotron{
display: inline-block;
text-align: center;
margin-left:0 auto;
font-size: 3em;
}
}