-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_submission.scss
96 lines (81 loc) · 1.93 KB
/
_submission.scss
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
@import 'colors';
.roundfield {
background-color: transparent;
border-radius: 3px;
padding: 0px;
font-size: 14px;
.title {
text-transform: capitalize;
}
textarea,
input {
border-radius: 3px;
}
}
.submit-page .content > h1 {
background-color: $listings-background-color;
border-radius: 3px;
margin: -50px -16px 16px -16px;
padding: 16px;
padding-left: 69px;
text-transform: capitalize;
}
.content.submit .info-notice {
@extend .infobar;
margin-top: 16px;
padding: 16px;
background-color: $notice-background-color;
border: 1px solid $notice-border-color;
}
@keyframes idiot-notice {
0% {
transform: scale(1, 1);
}
50% {
transform: scale(1.05, 1.05);
}
100% {
transform: scale(1, 1);
}
}
.formtabs-content {
background-color: $form-background-color;
padding: 16px;
border: none;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
.infobar {
background-color: $notice-background-color;
border: 1px solid $notice-border-color;
padding: 8px;
&:after {
content: "If you are here for Bungie's game, then you are in the wrong subreddit! Please visit r/destinythegame instead!";
display: block;
margin-top: 16px;
color: $idiot-notice-text-color;
font-weight: bold;
animation: idiot-notice 1s infinite;
}
}
}
ul.tabmenu.formtab {
padding-left: 0px;
font-size: 16px;
li {
display: inline-block;
}
.selected a {
background-color: $form-background-color;
font-size: 14px;
}
a {
display: block;
border: none;
font-size: 14px;
background-color: transparent;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
padding: 12px;
text-transform: capitalize;
}
}