-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (77 loc) · 1.45 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
.main2{
background-color: royalblue;
text-align: center;
width: 60%;height: 200px;
margin-left: 13.5%;
align-items: center;
padding: 6% ;
border-radius: 5px;
}
.name{
font-size: 3em;
color: white;
}
.value>h1{
display: inline-block;
color: white;
width: 3em;
}
.btn1{
-webkit-border-radius: 10;
-moz-border-radius: 10;
border-radius: 10px;
font-family: Georgia;
color: #fffaff;
font-size: 21px;
background: #7a0505;
padding: 5px 15px 5px 15px;
text-decoration: none;
}
.btn1:hover {
background: #db0b35;
text-decoration: none;
}
@media (max-width:510px){
.name{
font-size: 2.8em;
color: white;
}
.value>h1{
display: inline-block;
color: white;
width: 2.8em;
}
}
@media(max-width:450px){
.name{
font-size: 2em;
color: white;
}
.value>h1{
display: inline-block;
color: white;
width: 2em;
}
.btn1{
-webkit-border-radius: 10;
-moz-border-radius: 10;
border-radius: 10px;
font-family: Georgia;
color: #fffaff;
font-size: 16px;
background: #7a0505;
padding: 5px 10px 5px 10px;
text-decoration: none;
}
}
@media(max-width:321px){
.name{
font-size: 1.8em;
color: white;
}
.value>h1{
display: inline-block;
color: white;
width: 1.5em;
}
}