-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
38 lines (27 loc) · 1.93 KB
/
main.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
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
body {background-color:#0f7e94;color:#d9dedd;margin:0;padding:0;font-family:'Source Sans Pro',sans-serif;}
/* stop color changes on links */
a {color:#d9dedd;}
/* styling for svgs */
svg {transition: 0.09s;}
svg:hover {background-color:#d9dedd!important;color:#0f7e94!important;}
/* button styling */
button {transition:0.09s;color:#d9dedd;border-radius:8px;padding:10px;cursor:pointer;background-color:transparent;outline:none;border:1px solid #d9dedd;}
button:hover {background-color:#d9dedd;color:#0f7e94;}
/* header styling */
header {min-height:42.5px;background-color:rgba(255, 255, 255, 0.21);box-shadow:0 4px 30px rgba(0, 0, 0, 0.1);border:1px solid rgba(255, 255, 255, 0.24);backdrop-filter:blur(3px);border-radius:8px;width:calc(100% - 57px);margin-left:15px;margin-top:15px;padding:12px;}
/* styling back button in header */
#back {border-radius:8px;cursor:pointer;transition:0.09s;border:1px solid #d9dedd;}
/* styling profile button in header */
#profile {border-radius:8px;cursor:pointer;border:1px solid #d9dedd;padding:4px;}
/* styling for new set and note button in header */
#new {float:right;transform:initial;margin-right:10px;bottom:initial;padding:12px;font-size:13pt;border-radius:8px;border:1px solid #d9dedd;cursor:pointer;}
#new:hover {background-color:#d9dedd;color:#0f7e94;}
/* used for dropdown hiding/showing */
.show {display:block!important;}
/* create new set and note dropdown */
.dropdown-content {display:none;position:absolute;min-width:160px;z-index:1;border:1px solid #d9dedd;border-radius:8px;background-color:#0f7e94;right:30px;top:56px;transition:0.09s;}
.dropdown-content a {padding:12px 16px;text-decoration:none;display:block;}
.dropdown-content a:hover {color:#0f7e94;background-color:#d9dedd;}
/* styling for titles on pages */
#title {color:#d9dedd;text-align:center;margin-top:-45px;margin-bottom:0;position:relative;z-index:-1;}