-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (83 loc) · 1.6 KB
/
style.css
File metadata and controls
100 lines (83 loc) · 1.6 KB
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
background-color: #212121;
}
h2{
font-size: 2rem;
font-weight: 600;
margin-top: 5px;
margin-left: 8px;
color: white;
position: absolute;
}
h2 span{
color: #308D46;
}
header{
background-color: #313131;
height: 60px;
}
#newstory-container {
background-color:#308D46;
color: black;
border: none;
margin-top: 12px;
padding: 10px 20px;
border-radius: 22px;
cursor: pointer;
margin-left: 90%;
transition: transform 0.3s ease;
position:absolute
}
#newstory-container:hover {
background-color: #66b56f;
transform: translateY(1.4px);
}
#saveButton{
background-color:#308D46;
color: black;
border: none;
margin-top: 1px;
padding: 10px 20px;
border-radius: 22px;
cursor: pointer;
display: flex;
align-items: center;
margin-left: 50%;
justify-content: center;
transition: transform 0.3s ease;
}
#saveButton:hover {
background-color: #66b56f;
transform: translateY(-1.4px);
}
#storyTextArea{
background-color: #2b2b2b;
color: white;
margin: 20px;
}
textarea{
height: 220px;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
#collab-button{
background-color: #308D46;
color: black;
border: none;
margin-top: 12px;
padding: 10px 20px;
border-radius: 22px;
cursor: pointer;
margin-left: 82%;
transition: transform 0.3s ease;
position: relative;
}
#collab-button:hover{
background-color: #66b56f;
transform: translateY(1.4px);
}