rivapereira123 commited on
Commit
6142b5b
·
verified ·
1 Parent(s): 322894f

Upload theme.css

Browse files
Files changed (1) hide show
  1. theme.css +65 -0
theme.css ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ @import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
3
+
4
+ body {
5
+ font-family: 'Source Sans Pro', sans-serif;
6
+ background-color: #121212;
7
+ color: #f0f0f0;
8
+ }
9
+
10
+ #nickname-box, #user-card, #planner-card {
11
+ max-width: 720px;
12
+ margin: 0 auto;
13
+ padding: 28px;
14
+ background-color: #1e1e1e;
15
+ border-radius: 16px;
16
+ box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
17
+ color: #f0f0f0;
18
+ }
19
+
20
+ #nickname-box input, #user-card input, #planner-card input,
21
+ #user-card textarea, #planner-card textarea,
22
+ #nickname-box .gr-button, #user-card .gr-button, #planner-card .gr-button {
23
+ font-size: 14px;
24
+ padding: 8px 12px;
25
+ border-radius: 8px;
26
+ background-color: #2c2c2c;
27
+ color: #ffffff;
28
+ border: 1px solid #444;
29
+ }
30
+
31
+ .gr-button {
32
+ background-color: #3a3aff !important;
33
+ color: white !important;
34
+ font-weight: bold;
35
+ }
36
+
37
+ #linky-tab, #gitguru-tab {
38
+ background-color: #1e1e1e !important;
39
+ padding: 24px;
40
+ border-radius: 16px;
41
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
42
+ }
43
+
44
+ #linky-tab input, #linky-tab textarea,
45
+ #gitguru-tab input, #gitguru-tab textarea {
46
+ background-color: #2c2c2c !important;
47
+ color: #ffffff !important;
48
+ border: 1px solid #444 !important;
49
+ border-radius: 6px;
50
+ }
51
+
52
+ #dds-logo img {
53
+ max-width: 200px;
54
+ display: block;
55
+ margin: 0 auto 15px;
56
+ }
57
+
58
+ @media (max-width: 768px) {
59
+ .gr-row {
60
+ flex-direction: column !important;
61
+ }
62
+ #user-card {
63
+ margin-top: 20px;
64
+ }
65
+ }