Socialify

Folder ..

Viewing style.css
96 lines (81 loc) • 1.4 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
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #ffffff;
}

.dict_ui {
    background-color: #204186;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
}

.drag_region {
    height: 40px;
    -webkit-app-region: drag
}

.search_box {
    width: 80%;
    margin: 10% auto 0px auto;
}

.search {
    background: transparent;
    font-size: 3rem;
    border: none;
    color: #ffffff;
    outline: none;
    width: 100%;
}

.search::placeholder {
    color: #c9c9c9;
}

.small {
    font-size: 0.75rem;
    color: #bdbdbd;
    text-transform: uppercase;
    padding-left: 5px;
    user-select: none;
}

.results {
    height: 50%;
    overflow-y: scroll;
    width: 80%;
    margin: 0px auto 0px auto;
}

.wordType {
    color: #ffffff96;
    font-size: 1.5rem;
    margin-bottom: 0px;
}

.definition {
    margin-top: 5px;
    font-size: 2rem;
    margin-bottom: 20px;
}

.exampleArea {
    color: #ffffff96;
    margin-top: 0px;
}

.example {
    font-size: 0.75rem;
    color: #ffffff96;
    font-style: italic;
}

.synonym {
    color: #ffffff96;
    font-size: 1.2rem;
}

.synonymLink {
    color: #ffffff;
    cursor: pointer;
}

.synonymLink:hover {
    text-decoration: underline;
}

.divider {
    background-color: #fff;
    width: 100%;
    height: 2px;
    margin: 30px auto;
}