-
Notifications
You must be signed in to change notification settings - Fork 0
/
styl.css
102 lines (89 loc) · 1.98 KB
/
styl.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
@media (min-device-width: 1000px){
body{
height: 600px;
margin: 0 auto;
background-color: #CCF2F4;
}
header{
text-align: center;
background-color: #A4EBF3;
font-size: 30px;
height: 45px;
padding: 5px;
color: #555555;
position: fixed;
width: 100%;
top: 0;
text-shadow: 1px 1px 3px;
}
section{
width: 60%;
margin: 0 auto;
background-color: #CCF2F4;
padding: 20px;
color: #555555;
text-align: center;
margin-top: 45px;
}
footer{
background-color: #A4EBF3;
clear: both;
bottom: 0;
position: fixed;
height: 30px;
text-align: center;
width: 100%;
padding: 10px;
color: #555555;
font-size: 18px;
}
img{
border: 2px solid #A4EBF3;
margin: 30px;
}
img:hover{
border: 2px solid grey;
}
}
@media (max-device-width: 1000px) {
body{
height: 600px;
width: 100%;
margin: 0 auto;
background-color: #CCF2F4;
}
header{
text-align: center;
background-color: #A4EBF3;
font-size: 70px;
height: 100px;
padding: 5px;
color: #555555;
position: fixed;
width: 100%;
top: 0;
text-shadow: 1px 1px 3px;
}
section{
background-color: #CCF2F4;
color: #555555;
text-align: center;
margin-top: 70px;
font-size: 50px;
}
footer{
background-color: #A4EBF3;
clear: both;
bottom: 0;
position: fixed;
height: 30px;
text-align: center;
width: 100%;
padding: 10px;
color: #555555;
font-size: 18px;
}
img{
width: 100%;
}
}