-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
132 lines (111 loc) · 1.9 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
:root {
font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
html{
margin: 0;
padding: 0;
}
body {
overflow-y: scroll;
margin: auto;
max-width: 800px;
padding: 20px 0;
position: relative;
}
.info-container {
width: 72%;
float: left;
padding: 10px 25px 10px;
margin-bottom: -25px;
background-color: azure;
font-size: 1.1rem;
font-weight: 700;
text-transform: uppercase;
}
h2 {
font-size: 1rem;
font-weight: normal;
}
.container {
width: 72%;
float: left;
padding: 10px 25px 20px;
}
.buttonOne,
.buttonTwo,
.buttonThree,
.buttonFour {
border-radius:4px;
text-decoration: none;
font-size:16px;
width: 72%;
float: left;
padding: 10px 25px 70px;
}
.buttonOne {
background-color: #563d7c;
color: papayawhip;
}
.buttonTwo {
background-color:#563d7c26;
color: #af86fc;
}
.buttonThree {
background-color: #563d7c0d;
color: #af86fc;
}
.buttonFour {
background-color: rgba(86,61,124,0.15);
color: #af86fc;
}
ul {
list-style: none;
margin-left: 1.3rem;
padding: 0;
}
ul, li {
position: relative;
}
.reference {
margin-top: 0;
color: #af86fc;
width: 72%;
float: left;
padding: 5px 46px 5px;
}
.reference a {
color: #af86fc;
text-decoration: none;
padding: 0 6px;
border-radius: 4px;
}
.reference a:hover {
cursor: pointer;
background: #eef;
padding: 0 2px;
border-radius: 4px;
}
.line {
width: 82%;
float: left;
padding:
border-top: 1.5px solid #F9DEEF;
border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
border-image-slice: 1;
}
footer{
color: #af86fc;
font-size: .75rem;
width: 72%;
float: left;
padding: 5px 45px 10px;
}
footer a {
text-decoration: none;
}
/* Media styles */
@@media (max-width: 800px) {
.container, .reference {
flex: 100%;
}
}