-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommunityGuidelines.css
81 lines (70 loc) · 1.43 KB
/
CommunityGuidelines.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
h1{
background-color: #333;
padding: 20px;
font-family: 'Dosis', sans-serif;
border-radius: 5px;
color: beige;
text-align: center;
}
h2{
padding: 20px;
font-family: 'Dosis', sans-serif;
border-radius: 5px;
color: #333;
text-align: center;
}
p{
margin: 10px;
margin-top: 0px;
margin-left: 50px;
margin-right: 50px;
padding-left: 80px;
padding-right: 80px;
padding: 40px;
padding-top: 15px;
font-family: 'Open Sans', sans-serif;
}
button{
float: right;
margin-top: -40px;
padding: 10px;
margin-right: 120px;
background-color: #FFC000;
border-radius: 5px;
border: 0px;
}
button>a{
text-decoration: none;
color: black;
}
button:hover{
opacity: 50%;
}
button>a:hover{
color: rgb(25, 124, 91);
}
@media screen and (max-width:600px){ /*Changes text color when screen size becomes 600px*/
p{
margin: 10px;
padding-left: 10px;
padding-right: 10px;
padding: 10px;
font-family: 'Open Sans', sans-serif;
}
h2{
padding: 10px;
font-family: 'Dosis', sans-serif;
border-radius: 5px;
color: #333;
text-align: center;
}
button{
float: right;
margin-top: -30px;
padding: 10px;
margin-right: 10px;
background-color: #FFC000;
border-radius: 5px;
border: 0px;
}
}