A game about forced loneliness, made by TACStudios
1namespace Unity.Multiplayer.Center.Window.UI 2{ 3 /// <summary> 4 /// Style common to the multiplayer center, excepted for the getting started tab (which needs shared style) 5 /// </summary> 6 internal static class StyleClasses 7 { 8 /// <summary> Game spec standard question </summary> 9 public const string QuestionView = "question-view"; 10 11 /// <summary> Game spec mandatory question, highlighted </summary> 12 public const string MandatoryQuestion = "mandatory-question"; 13 14 /// <summary> Description of game spec section </summary> 15 public const string QuestionText = "question-text"; 16 17 /// <summary> Part of game spec questionnaire that contains several questions </summary> 18 public const string QuestionSection = "question-section"; 19 20 /// <summary> Part of game spec questionnaire that contains several questions </summary> 21 public const string QuestionSectionNoScrollbar = "question-section__no-scrollbar"; 22 23 /// <summary> Thicker button to go to a next step; e.g. Install packages </summary> 24 public const string NextStepButton = "next-step-button"; 25 26 /// <summary> The splitview that is used in Recommendation and Getting Started Tab </summary> 27 public const string MainSplitView = "main-split-view"; 28 29 /// <summary> The right container of the main split view </summary> 30 public const string MainSplitViewRight = "main-split-view-right"; 31 32 /// <summary> The left container of the main split view </summary> 33 public const string MainSplitViewLeft = "main-split-view-left"; 34 35 /// <summary> The style for the Headline that is used in the main views </summary> 36 public const string ViewHeadline = "view-headline"; 37 38 } 39}