-
Notifications
You must be signed in to change notification settings - Fork 99
/
contribution.css
89 lines (87 loc) · 1.77 KB
/
contribution.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
body{
background-color: #1a1c21;
color: #fff;
}
.container {
display: flex;
justify-content: center;
align-items: center;
/* height: 100%;
width: 100%; */
margin-top: 30px;
font-size: 1.4rem;
font-family: 'Bebas Neue', cursive;
letter-spacing: 2px;
text-decoration: underline;
}
.container .content p {
font-size: 1.6rem;
font-weight: bold;
width: 50%;
position: absolute;
left: 5%;
border-radius: 5px;
margin: 20px;
padding: 20px;
background: linear-gradient(90deg, rgba(45,155,213,1) 42%, rgba(0,212,255,1) 65%);
}
.points{
position: relative;
top: 80%;
font-size: 1.5rem;
width: 70%;
left: 12%;
}
#note{
font-size: 1.6rem;
font-weight: bold;
width: 70%;
left: 15%;
border-radius: 5px;
background: linear-gradient(90deg, rgba(45,155,213,1) 30%, rgba(88,175,209,1) 51%, rgba(88,175,209,1) 59%);
position: relative;
top: 10%;
padding-left: 2%;
padding-top: 0.025%;
padding-bottom: 0.025%;
font-family: 'Anton', sans-serif;
box-shadow: 5px 5px 10px 2px #8efafa;
text-align: center;
}
.points li{
margin: 3%;
font-family: 'Nunito', sans-serif;
}
img{
width: 30rem;
position: absolute;
left: 55%;
top: 50%;
}
.content{
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-content: flex-start;
align-items: flex-start;
justify-content: flex-start;
}
@media(max-width:850px){
img{
width: 20rem;
position: absolute;
left: 10%;
top: 60vh;
opacity: 0.1;
}
.container{
text-align: center;
}
#note{
height: 4rem;
font-size: 1rem;
display: flex;
align-content: center;
flex-wrap: wrap;
}
}