-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
122 lines (105 loc) · 1.73 KB
/
styles.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body{
height: 100%;
overflow: auto;
font-family: lemon-r;
}
@font-face {
font-family: minecraft;
src: url(/font/Minecraft.ttf);
}
body{
background-image: url('/images/webbg.jpg');
background-size: cover;
background-repeat: no-repeat;
}
.main{
display: grid;
grid-template-columns: 1fr 1px 2fr 1px 1fr;
column-gap: 15px;
margin-top: 40px;
}
.column{
text-align: center;
}
.horizontal-line{
border-right: 2px solid red;
}
.content{
background-color: rgb(219, 219, 219);
margin: 50px;
padding: 20px;
}
.logo{
width: 100%;
object-fit: contain;
top:0;
margin: 0 auto;
padding: 0;
display:inline-block;
max-height: 100px;
background-color: transparent;
}
.header{
position: relative;
text-align: center;
margin: 0;
padding-bottom: 45px;
}
.submission-box {
border: 1px solid #ccc;
padding: 20px;
border-radius: 20px;
max-width: 400px;
margin: auto;
}
input, textarea {
width: 100%;
margin-bottom: 10px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
.submit {
padding: 10px 15px;
background-color: transparent;
cursor: pointer;
color: #ccc;
display: inline-block;
}
.emo{
position: absolute;
top:20%;
right: 0;
width: 20%;
}
h2{
color: blue;
text-align: left;
padding-top: 10px;
padding-bottom: 6px;
font-family: minecraft;
}
p{
text-align: justify;
}
.blocks{
border: 2px solid blue;
padding: 10px;
border-radius: 20px;
}
.reaction{
display: inline-block;
width: 50%;
justify-content: center;
}
.highlight{
background: linear-gradient(to right, rgb(54, 110, 232), rgb(235, 187, 82), rgb(255, 0, 0));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}